如何解决Laravel问题-“ / tmp / phpY14gRo”文件不存在或不可读?

时间:2019-10-09 14:25:27

标签: php laravel docker imagick

每次通过POST方法加载PDF时,我都需要创建它的缩略图。 将文件上传到 Controller 中后,它将运行 getThumb 函数,该函数使用 Imagick 创建缩略图。问题是每次执行此操作时,此请求都会中断并显示此错误-“ / tmp / phpY14gRo”文件不存在或不可读。

Imagick已正确安装。我使用 php-7.2-apache 泊坞窗映像。

但是,如果我运行完全相同的 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 框架引发的。

这是错误的图片: enter image description here

2 个答案:

答案 0 :(得分:0)

调试后,我发现Imagick没有导入到项目中。 因此,我刚刚在{strong> Controller 的顶部添加了use Imagick

答案 1 :(得分:0)

就我而言,我两次打过$validator->fails()

在我的情况下,检查删除文件后,Controller动作中的第一个调用$validator->fails()。第二个调用找不到此文件。