dpzjl68484 2019-01-29 04:33
浏览 80

使用PHP将3个jpg图像组合在一起

This question already asked but that not solve my issue.

I want to combine 3 JPG images top of each other using with PHP.

I tried this in PNG that's working fine. But when i using JPG image i got black screen like this

enter image description here

This is my code:

<?php
ini_set('max_execution_time', 300);

function get_file($file, $from) {
    if (!file_exists(__DIR__ . "/" . $file)) { file_put_contents(__DIR__ . "/" . $file, file_get_contents($from)); }
}
get_file("background-layer-111.jpg", "https://img.youtube.com/vi/CQElIZzzlpc/hqdefault.jpg");
get_file("icon-layer-222.jpg", "https://img.youtube.com/vi/OK_JCtrrv-c&t=1732s/hqdefault.jpg");
get_file("stars-layer-333.jpg", "https://img.youtube.com/vi/1vYMqjNafww/hqdefault.jpg");

$bgFile = __DIR__ . "/background-layer-111.jpg"; 
$imageFile = __DIR__ . "/icon-layer-222.jpg"; 
$watermarkFile = __DIR__ . "/stars-layer-333.jpg"; 


$x = $y = 76;


$final_img = imagecreatetruecolor($x, $y);


$image_1 = imagecreatefromjpeg($bgFile);
$image_2 = imagecreatefromjpeg($imageFile);
$image_3 = imagecreatefromjpeg($watermarkFile);


imagealphablending($final_img, true);
imagesavealpha($final_img, true);


imagecopy($final_img, $image_1, 0, 0, 0, 0, $x, $y);
imagecopy($final_img, $image_2, 0, 0, 0, 0, $x, $y);
imagecopy($final_img, $image_3, 0, 0, 0, 0, $x, $y);

ob_start();
imagejpeg($final_img);
$watermarkedImg = ob_get_contents(); 
ob_end_clean(); 

header('Content-Type: image/jpeg');
echo $watermarkedImg; 

Note: My code working for only PNG, i want to work with all image format like JPG. I refer this url Link

  • 写回答

0条回答

    报告相同问题?

    悬赏问题

    • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
    • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
    • ¥15 CSAPPattacklab
    • ¥15 一直显示正在等待HID—ISP
    • ¥15 Python turtle 画图
    • ¥15 关于大棚监测的pcb板设计
    • ¥15 stm32开发clion时遇到的编译问题
    • ¥15 lna设计 源简并电感型共源放大器
    • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
    • ¥15 Vue3地图和异步函数使用