如何从php中的ImageMagick转换命令获取图像blob

时间:2018-04-30 12:06:09

标签: php imagemagick imagick imagemagick-convert

通过PHP convert使用ImageMagick shell_exec()可以获得二进制blob。将这样的命令转换为PHP Imagick类非常困难。有没有其他方法可以实现此功能?

我正在使用像这样的Imagick。

$im = new Imagick('some image');
$im->trimImage(20000);
header ("Content-Type: image/{$im->getImageFormat()}");
echo $im->getImageBlob(); // need output in from of blob

我想获得与此类似的输出结果。

convert imageName.png -alpha set -   white -border 1 -fill none -fuzz 3% -draw "color 0,0 floodfill" -shave 1x1 removed_edges.png

如果ImageMagick命令返回二进制blob而不是写入文件,我的问题将会解决。

1 个答案:

答案 0 :(得分:1)

附加jpg: - 在命令之后而不是图像名称&它正在工作。

$command = "convert imageName.png -alpha set - white -border 1 -fill none -fuzz 3% -draw "color 0,0 floodfill" -shave 1x1 jpg:-"; header ("Content-Type: image/jpg"); echo shell_exec($command);