我要做的是拍摄2张图像并合并输出单张图像。当我尝试运行我的脚本时,我得到一个破碎的图像图标,没有别的。
<?php
header( "Content-type: image/png" );
$img1 = imagecreatefromjpeg('http://www.refaim.com/images/maleCharacter.jpg');
$img3 = imagecreatefrompng('http://www.refaim.com/images/leafswordleft.png');
$x1 = imagesx($img1);
$y1 = imagesy($img1);
$x2 = imagesx($img3);
$y2 = imagesy($img3);
imagecopyresampled(
$img1, $img3,
7, 135, 0, 0,
50, 50,
$x2, $y2);
imagepng($img1);
?>
我已经尝试了其他主题的所有其他建议,但没有一个有效。此外,如果我尝试在标签中调用该文件,我仍然会得到一个损坏的图像。