我在两个不同的租用服务器上有以下代码的两个副本:
<?php
$my_img = imagecreatefrompng("img.png");
header( "Content-type: image/png" );
imagepng( $my_img );
imagecolordeallocate( $text_color );
?>
当我尝试运行一个副本时,我在标题中收到错误。当我运行另一个副本时它工作正常。可能导致这个问题的原因是什么?
答案 0 :(得分:-1)
尝试使用:
<?php
header("Content-Type: image/png");
readfile("img.png");
exit;
?>
如果您只想加载和放大,则无需重新创建图像。从php文件中显示出来。