图像将 Tiff 转换为 png/jpg
Image Convert Tiff to png/jpg
如何将 tiff 或 tif 文件转换为 png 或 jpg 扩展名。我为 laravel.
使用了干预包
当我尝试将 tiff 转换为 jpg 时出现类似
的错误
ImageMagick module not available with this PHP installation.
下面是我的代码
Image::configure(array('driver' => 'imagick'));
$imgCo = Image::make($upload_path.'/original/'.$filename);
$imgCo->save($upload_path.'/print/'.$orgName.'png');
已编辑问题::
我使用下面的路径来转换图像
Image::make(/var/www/html/project/public/design/images_directory/original/directory - [12].tif)->encode('png')->save(/var/www/html/projrct/public/design/images_directory/print/directory - [2].png);
使用encode()
method to convert an image and save()
保存转换后的图像。
Image::make('full/path/to/image.tiff')->encode('png')->save('path/to/saved/image.png');
此外,您刚刚用代码和错误更新了问题。要修复错误,您需要先 install ImageMagick
module。
如何将 tiff 或 tif 文件转换为 png 或 jpg 扩展名。我为 laravel.
使用了干预包当我尝试将 tiff 转换为 jpg 时出现类似
的错误ImageMagick module not available with this PHP installation.
下面是我的代码
Image::configure(array('driver' => 'imagick'));
$imgCo = Image::make($upload_path.'/original/'.$filename);
$imgCo->save($upload_path.'/print/'.$orgName.'png');
已编辑问题::
我使用下面的路径来转换图像
Image::make(/var/www/html/project/public/design/images_directory/original/directory - [12].tif)->encode('png')->save(/var/www/html/projrct/public/design/images_directory/print/directory - [2].png);
使用encode()
method to convert an image and save()
保存转换后的图像。
Image::make('full/path/to/image.tiff')->encode('png')->save('path/to/saved/image.png');
此外,您刚刚用代码和错误更新了问题。要修复错误,您需要先 install ImageMagick
module。