编程语言
首页 > 编程语言> > php-ghostscript 9.26更新中断了imagick readImage的多页PDF

php-ghostscript 9.26更新中断了imagick readImage的多页PDF

作者:互联网

由于ghostscript更新9.25->昨天早上9.26(在Debian上)我们收到此错误:

ErrorMessage: FailedToExecuteCommand 
`'gs' -sstdout=%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT
 -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 
'-sDEVICE=pngalpha' -dTextAlphaBits=4 -dGraphicsAlphaBits=4 '-r300x300' 
-dFirstPage=1 -dLastPage=1 '-sOutputFile=/tmp/magick-39903EapVvuyNQxL4%d' 
'-f/tmp/magick-39903VD0GMIpLPaIN' 
'-f/tmp/magick-399031owlSOb4aOEw'' (-1) 
@ error/delegate.c/ExternalDelegateCommand/462

尝试阅读多页PDF的第一页时:

$this->resource = new \Imagick();
$this->resource->setResolution(300, 300);
$this->resource->readImage($path . '[0]');

任何想法如何解决这个问题?

查看:https://www.ghostscript.com/doc/9.26/History9.htm#Version9.26
参见:https://secure.php.net/manual/en/imagick.readimage.php

解决方法:

几乎可以肯定这个错误报告:

https://bugs.ghostscript.com/show_bug.cgi?id=699815

您的解决方案是;不要使用pngalpha设备,不要使用FirstPage / LastPage,升级到带有该修复程序的版本或降级到较早的版本.尽管该错误可能存在于许多较早的版本中,但我不知道为什么它以前没有出现过.

标签:imagick,ghostscript,php
来源: https://codeday.me/bug/20191024/1924043.html