- 论坛徽章:
- 0
|
我使用GD做缩略图,由于原图有5M左右,所以出现如下错误,
Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 11392 bytes) in /var/www/html/xxx/function.php on line 53
将设置到"memory_limit"为 "60M"才解决,php处理图片对内存的需求量如何计算?
- ini_set("memory_limit", "60M"); //动态地调整php使用内存的大小,否则处理大图会出错
- $tmp_image = ImageCreateFromJpeg($source_file);
- $create_image = ImageCreateTrueColor($create_width, $create_height);
- ImageCopyResampled($create_image, $tmp_image, 0, 0, 0, 0, $create_width, $create_height, $source_width, $source_height);
- ImageJpeg($create_image, $target_file, 50); // 50为jpg品质系数
- ImageDestroy($create_image);
- ImageDestroy($tmp_image);
复制代码 |
|