标题非常自我解释......
这是我的简单代码:
$img=imagecreate(300,300);
$black=imagecolorallocate($img,0,0,0);
$white=imagecolorallocate($img,255,255,255);
imagefill($img,0,0,$white);
imagerectangle($img,10,10,289,289,$black);
header ('Content-Type: image/png');
imagepng($img);
现在......如果您保存导出的文件并将其上传到yahoo smushit
http://www.smushit.com/ysmush.it/
您可能会注意到它可以被压缩得更多。
我的目标是直接从php(动态)导出压缩的png图像,并且它将完全优化(压缩)。
我注意到imagepng
的压缩参数为0-9,但由于某种原因它不适用于我......