我正在使用imagescale复制图像的一部分:
$img = imagecreatefromjpeg('before.jpg');
$img = imagescale($img, 660, 384);
之前:
后:
使用颜色较少的图像.
解决方法:
PHP文档中的注释提出了一个解决方案.
http://php.net/manual/en/function.imagescale.php
imageScale has got troubles with scaling images…
It can output Segmentation Fault when you want to provide custom $mode argument.
How to scale image with interpolation in php gd?
Use imagecopyresampled() instead of imagescale().