php-使用ImageMagick将大PDF转换为JPEG返回500内部错误
作者:互联网
我的代码一旦上传就将PDF文件页面转换为JPEG图像,并且在使用浅色PDF时一切正常(图像和效果不多,平均页数不超过40-50).但是,当文件较重时,会出现“ 500 Internal Error”. PDF已上传,页面已转换到断点.
我的代码:
$foldername = str_replace('.','',preg_replace('/\s+/', '', microtime()));
mkdir("./mag_thumbs/".$foldername, 0755, TRUE);
try
{
$compression_type = Imagick::COMPRESSION_JPEG;
$im = new imagick();
$im->setResolution(250,250);
$im->readimage($pdf_path);
$pdf_count = $im->getNumberImages();
$im->setImageFormat('jpg');
$im->flattenImages();
$im->setImageCompression($compression_type);
$im->setImageCompressionQuality(40);
$im->writeImages('./mag_thumbs/'.$foldername.'/page.jpg',true);
$im->clear();
$im->destroy();
}
catch(Exception $e){ /* SOME TROUBLESHOOTING CODE */ }
我应该延长服务器的超时时间吗?还有其他更好的解决方案吗?
解决方法:
在代码上方输入以下行:
ini_set('max_execution_time', 10000);//you can change this limit
ini_set("memory_limit", "6400M");//you can change this limit
标签:imagick,pdf,imagemagick,jpeg,php 来源: https://codeday.me/bug/20191121/2055693.html