GD图像叠加透明PNG

7

我有一个透明的图片,想要覆盖在整个图像上以产生边框效果。在这段代码中,它裁剪了一张现有的图片。它将两者合并,但最终的顶部没有显示透明度。如何修复这个问题?

 <?
    $dst_x = 0;   // X-coordinate of destination point. 
    $dst_y = 0;   // Y --coordinate of destination point. 
    $src_x = 163; // Crop Start X position in original image
    $src_y = 0;   // Crop Srart Y position in original image
    $dst_w = 469; // Thumb width
    $dst_h = 296; // Thumb height
    $src_w = 469; // $src_x + $dst_w Crop end X position in original image
    $src_h = 296; // $src_y + $dst_h Crop end Y position in original image

    // Creating an image with true colors having thumb dimensions.( to merge with the original image )
    $dst_image = imagecreatetruecolor($dst_w,$dst_h);
    // Get original image
    $src_image = imagecreatefromjpeg("http://www.ucatholic.com/wp-content/uploads/2012/10/Sallixtus-631x295.jpg");
    // Cropping 
    imagecopyresampled($dst_image, $src_image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);
    // Saving 
    imagejpeg($dst_image, "images/crop.jpg");

    $src = imagecreatefrompng('http://www.EdVizenor.com/images/saintCover.png');

    /// THIS LINE NOT WORKING - -   // Copy and merge
    imagecopymerge($dst_image, $src, 0, 0, 0, 0, 469, 296, 100);

    header('Content-Type: image/png');
    imagegif($dst_image);
    ?>
2个回答

13
不要使用imagecopymerge,改用imagecopy,这样它就会正常工作,并且水印将以透明度显示。
imagecopy($dst_image, $src, 0, 0, 0, 0, 469, 296);

关于图像重新采样(imagecopyresampled),如何修复以匹配具有定义高度和宽度的特定块? - WhiteHorse

4
如果使用imagecopy而不是imagecopymerge,您将失去对alpha通道的控制。
如果您想要使用Gd扩展进行真正快速的叠加操作,我认为您可以使用Jaguar
如果您想看看如何实现,请查看我的答案这里
如果您想要一个刷边框,您可以像这样使用Jaguar

use Jaguar\Canvas,
    Jaguar\Drawable\Border;

    $canvas = new Canvas('your image');
    $brush = new Canvas('style image');

    $border = new Border(20);
    $border->draw($canvas,$brush);

    $canvas->save('path to save')->show();


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接