在我的链接中,图片未显示,因为它们没有从/tmp
移动到指定的目录。 php脚本指针是正确的,并已使用file_exists()
验证。处理图像的脚本也在我的机器上正常工作。
我已经检查了php.net中定义的所有php.ini设置; file_uploads,upload_max_filesize,upload_tmp_dir,post_max_size和max_input_time 。
我还检查了/tmp
和上传目录的文件模式。所有都经过验证是777。
我检查过php error_log并且没有错误。
任何想法都赞赏,我已经有6个小时没有进展......
服务器/应用详情: CentOS7,Apache 2.4.6,PHP 5.4.16,Laravel 4.2
负责此事的代码:
public function createTN($image) {
# Load Zebra Image Library
require_once public_path().'/uploads/Zebra_Image.php';
$destinationPath = public_path().'/uploads/thumbnails/';
$tn = new Zebra_Image();
$tn->source_path = $image->getRealPath();
$tn->target_path = $destinationPath.$this->name.'.jpg';
$tn->jpeg_quality = 60;
$tn->preserve_aspect_ratio = true;
$tn->enlarge_smaller_images = true;
$tn->resize(100, 100, ZEBRA_IMAGE_CROP_CENTER);
}
PS:public_path()
是正确的
答案 0 :(得分:0)
http://php.net/manual/en/book.image.php
yum install gd gd-devel php-gd