用php将pdf转换为灰度的最佳方法?
如果我想将 pdf 转换为灰度,最好的方法是什么。我目前使用 tcpdf 将 html 转换为 pdf,但我还需要一个可以将其转换为灰度的选项。执行此操作的最佳方法是什么。
If I want to convert a pdf to greyscale whats the best way to go about it. Im currently using tcpdf to convert html to pdf but I also need an option where I can convert it to greyscale. Whats the best way to go about doing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您安装了 Imagick (imagemagick),您可以获取生成的 PDF并保存另一张灰度图。
If you have Imagick (imagemagick) installed, you can take your generated PDF and save another gray-scaled one.
我认为最好的方法是操作 HTML 和图像,并在转换为 PDF 之前将 HTML 灰度化。
您可以运行所有图像并将它们传递给 GD 以使它们全部变成灰色
http://php.about.com/od/gdlibrary/ss/grayscale_gd.htm
您可能还需要创建一个单独的 css,以便在页面应用颜色时使用。
华泰
I think the best way is to manipulate the HTML and images and make the HTML grayscale before converting to PDF.
You can run through all your images and pass them through GD to make them all gray
http://php.about.com/od/gdlibrary/ss/grayscale_gd.htm
You will also need to probably create a separate css to use in case you have color applied to your page.
HTH