使用 RMagick 修改图像的亮度/对比度
我正在尝试编写一个脚本来获取 PDF 并增加亮度/对比度,以便我扫描的手写内容实际上是可读的。我可以用 Photoshop 做到这一点(这真的很乏味),但我不知道使用什么 RMagick 方法来产生类似的结果。
有什么指点吗?感谢您的帮助。
I'm trying to write a script to take a PDF and increase the brightness/contrast such that my scanned handwritting is actually readable. I am able to do this with Photoshop (which is really tedious), but I can't figure out what RMagick methods to use to produce a similar result.
Any pointers? Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用 Fred 的 ImageMagick 脚本来使手写可读,请参阅: http://www.fmwconcepts.com/imagemagick/
我最终没有在这部分使用 RMagick;相反,我只是从 ruby 调用 imagemagick 的转换终端命令。这有点复杂 - 但它对我有用。下面是一些示例代码:
我知道这不是最干净的代码,但它对我有用。
I ended up using Fred's ImageMagick scripts to make the handwriting readable see : http://www.fmwconcepts.com/imagemagick/
I ended up not using RMagick for this part; instead I just called imagemagick's convert terminal command from ruby. It is a little bit convoluted - but it worked for me. Some sample code is below:
I know this isn't the cleanest code, but it worked for me.