PHP MagickWand 真灰度
我正在寻找一种在 PHP 中复制 Photoshop 灰度/去饱和功能的方法,我在服务器上安装了 MagickWand。
我尝试了许多不同的方法(包括迭代像素),但当我在 Photoshop 中打开修改后的图像时,对比度总是会改变(更亮)。
我想这可能与未保存嵌入的颜色配置文件有关?
$resource = NewMagickWand();
MagickReadImage( $resource, $file);
MagickQuantizeImage( $resource, 16772216, MW_GRAYColorspace, 8, true, true );
header( 'Content-Type: image/jpeg' );
MagickEchoImageBlob( $resource );
有人知道可以通过 PHP 实现真正的灰度吗?解决方案不必使用 Imagemagick
赞赏
Im looking for a way to replicate the Photoshop Grayscale/Desaturate feature in PHP, I have MagickWand installed on the server.
I have tried numerous different methods (including iterating the pixels) but the contrast is always altered (brighter) when I open the modified image in photoshop.
I'm thinking it might have something to do with the embedded color profile not being saved??
$resource = NewMagickWand();
MagickReadImage( $resource, $file);
MagickQuantizeImage( $resource, 16772216, MW_GRAYColorspace, 8, true, true );
header( 'Content-Type: image/jpeg' );
MagickEchoImageBlob( $resource );
Anyone know of a true grayscale that can be done via PHP?? Solution doesn't have to use Imagemagick
Appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 imagemagick 将图像转换为灰度
这里是灰色配置文件的链接 http://www.mediafire.com/?jxlwfyjzjzj
convert an image to greyscale with imagemagick
Heres a link to the gray profile http://www.mediafire.com/?jxlwfyjzjzj