Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下问题:imagepng,imagejpeg 不工作。我在白屏上出现黑色问号(未知字符列表)。gd2 模块已打开。例如采取这个简单的代码:
$im = imagecreatefrompng($file_name); header('Content-Type: image/png'); imagepng($im); imagedestroy($im)
我错过了什么?
这对我有用
$im = imagecreatefrompng("1.png"); ob_clean(); header('Content-Type: image/png'); imagepng($im); imagedestroy($im);