通过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而不是写入文件,我的问题将会解决。
答案 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);