使用PHP将多个PNG图像连接到一个PNG中

编程入门 行业动态 更新时间:2024-10-23 23:30:04
本文介绍了使用PHP将多个PNG图像连接到一个PNG中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在尝试使用PHP基于我自己的PNG制作自定义精灵,但我遇到了两个问题:

I´m trying to make custom sprites based on my own PNGs using PHP, but I got two problems:

  • 输出图像它是堆叠的PNG的集合......换句话说:源PNG是一个在另一个上面。
  • 我需要输出图像的透明背景!
  • 这是我使用的代码:

    $width = 210; $height = 190; $layers = array(); $layers[] = imagecreatefrompng("copy.png"); $layers[] = imagecreatefrompng("cut.png"); $image = imagecreatetruecolor($width, $height); // to make background transparent? imagealphablending($image, false); $transparency = imagecolorallocatealpha($image, 0, 0, 0, 127); imagefill($image, 0, 0, $transparency); imagesavealpha($image, true); imagealphablending($image, true); for ($i = 0; $i < count($layers); $i++) { imagecopy($image, $layers[$i], 0, 0, 0, 0, $width, $height); } imagealphablending($image, false); imagesavealpha($image, true); imagepng($image, 'final_img.png');

    推荐答案

    一小时后尝试仅使用PHP执行作业GD我决定给这个名为ImageWorkshop的图书馆一个机会,可以从这里访问:

    After one hour trying to do the Job using only PHP GD I decided to give a chance to this Library called "ImageWorkshop" which is accessible from here:

    phpimageworkshop/

    结果是真棒,用10行代码来解决问题。 以下是如何:

    The result is AWESOME, with less of 10 lines of code I solve the situation. Here is How:

    (显然,首先你必须下载ImageWorkshop)

    (Obviously, first you have to download ImageWorkshop)

    注意:我将使用一些描述性代码来确保每个人都理解:)

    NOTE: I will use a little bit descriptive code to ensure everybody understanding :)

    require_once('libs/PHPImageWorkshop/ImageWorkshop.php'); /*The Empty Layer have 100x100... And is TRANSPARENT!!*/ $emptyLayer = ImageWorkshop::initVirginLayer(100, 100); $cut = ImageWorkshop::initFromPath(__DIR__ . '/icons/copy.png'); $copy = ImageWorkshop::initFromPath(__DIR__ . '/icons/cut.png'); /*Set the position of "cut" and "copy" icons inside the emptyLayer*/ $emptyLayer->addLayerOnTop($cut, 20, 10, 'LT'); $emptyLayer->addLayerOnTop($copy, 20, 30, 'LT'); // Saving the result $dirPath = __DIR__ . "/icons/"; $filename = "output.png"; $createFolders = true; //will create the folder if not exist $backgroundColor = null; // transparent, only for PNG (otherwise it will be white if set null) $imageQuality = 100; // useless for GIF, usefull for PNG and JPEG (0 to 100%) $emptyLayer->save($dirPath, $filename, $createFolders, $backgroundColor, $imageQuality);

    全部!

    顺便说一下这个小型库使用PHP GD库。

    By the way this small Library uses the PHP GD library.

    更多推荐

    使用PHP将多个PNG图像连接到一个PNG中

    本文发布于:2023-07-27 00:17:36,感谢您对本站的认可!
    本文链接:https://www.elefans.com/category/jswz/34/1219189.html
    版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
    本文标签:多个   连接到   图像   PHP   PNG

    发布评论

    评论列表 (有 0 条评论)
    草根站长

    >www.elefans.com

    编程频道|电子爱好者 - 技术资讯及电子产品介绍!