【发布时间】:2019-10-09 14:25:27
【问题描述】:
每次通过 POST 方法加载 PDF 时,我都需要创建它的缩略图。 一旦我将文件上传到 Controller 中,它就会运行 getThumb 函数,该函数使用 Imagick 创建缩略图。问题是每次我这样做时,此请求都会中断并显示此错误 - “/tmp/phpY14gRo”文件不存在或不可读。。
Imagick 已正确安装。我使用 php-7.2-apache docker 镜像。
但如果我运行完全相同的 shell_excec 脚本,它就可以工作!这消除了对错误依赖安装的所有怀疑
这是我的控制器的功能:
public function createThumb($source, $target, $size = 256, $page = 1)
{
if (file_exists($source) && !is_dir($source)): // source path must be available and not be a directory
if (mime_content_type($source) != 'application/pdf'):
return FALSE; // source is not a pdf file returns a failure
endif;
$sepa = '/'; // using '/' as file separation for nfs on linux.
$target = dirname($source) . $sepa . $target;
$size = intval($size); // only use as integer, default is 256
$page = intval($page); // only use as integer, default is 1
$page--; // default page 1, must be treated as 0 hereafter
if ($page < 0) {
$page = 0;
} // we cannot have negative values
//It breaks exactly right here
$img = new Imagick($source . "[$page]"); // [0] = first page, [1] = second page
$imH = $img->getImageHeight();
$imW = $img->getImageWidth();
if ($imH == 0) {
$imH = 1;
} // if the pdf page has no height use 1 instead
if ($imW == 0) {
$imW = 1;
} // if the pdf page has no width use 1 instead
$sizR = round($size * (min($imW, $imH) / max($imW, $imH))); // relative pixels of the shorter side
$img->setImageColorspace(255); // prevent image colors from inverting
$img->setImageBackgroundColor('white'); // set background color and flatten
$img = $img->flattenImages(); // prevents black zones on transparency in pdf
$img->setimageformat('jpeg');
if ($imH == $imW) {
$img->thumbnailimage($size, $size);
} // square page
if ($imH < $imW) {
$img->thumbnailimage($size, $sizR);
} // landscape page orientation
if ($imH > $imW) {
$img->thumbnailimage($sizR, $size);
} // portrait page orientation
if (!is_dir(dirname($target))) {
mkdir(dirname($target), 0777, true);
} // if not there make target directory
$img->writeimage($target);
$img->clear();
$img->destroy();
if (file_exists($target)) {
return $target;
} // return the path to the new file for further processing
endif;
return FALSE; // the source file was not available, or Imagick didn't create a file, so returns a failure
}
我以为是权限问题,结果发现不是。
更新:
如果我在没有参数的情况下初始化 Imagick,它不会抛出错误,因此不会创建缩略图,因为它没有获取文件路径。因此,每当我添加文件路径并且 PHP 开始搜索该文件时,就会发生错误。在日志中,我注意到 InvalidArgumentException 异常是由 Symfony 框架引发的。
【问题讨论】:
-
我现在也遇到了同样的问题,因为我不小心删除了存储图像的表。帮帮我,先生。 :(
-
你能提供更多的上下文吗?
-
你到底丢了什么? SQL 表还是 Eloquent 模型?
-
当 Laravel 试图访问一个未导入的模块时会出现这种类型的错误消息。确保首先导入了所有模块。如果没有帮助,请附上您的代码,我会对其进行审核。
标签: php laravel docker imagick