竞赛:优化灰度扫描文档的大小!

发布于 2024-08-10 23:20:10 字数 660 浏览 3 评论 0原文

我把这作为一个竞赛,但这仍然是一个问题!

这是原始图像: http://dl.dropbox.com/u/1663633/original_scan .jpg

原始大小约为1兆字节。如何减小尺寸,以便 A4 纸上的最终打印件(我认为大约是信纸尺寸......)仍然看起来不错?

规则:

  • 该过程必须是自动的(应用于数百个相似的图像),因此不允许手动校正(例如使用橡皮擦工具在 Photoshop 中擦除黑色边框)
  • (200dpi)不能进一步降低

以下是一些想法

  • 分辨率 颜色数量
  • 可以减少噪音(没有任何意义的黑色像素..)并使事物变得平滑..

我设法达到了156KB,你能超越我吗?当然,你应该解释一下你是如何做到的 =)

PS 我用 dropbox 上传了我的图像,但也许有一个更简单的方法..不知道.. 你可以在这里查看我的压缩版本

I put this as a contest, but it's still a question!

Here's the original image: http://dl.dropbox.com/u/1663633/original_scan.jpg

Original size is about 1 megabyte. How would you reduce the size so that the final print on a A4 paper (about letter size I think..) still looks good?

Rules:

  • The process MUST be automatic (to be applied to hundreds of similar images) therefore no manual correction is allowed (like erase black borders in photoshop with the eraser tool)
  • Resolution (200dpi) cannot be lowered any further

Here are a few Ideas

  • reduce number of colors
  • reduce noise (black pixels without any meaning..) and smooth things out..

I managed to achieve 156KB, can you best me? You should explain how you did it of course =)

P.S. I uploaded my image with dropbox but maybe there's a simpler way.. don't know..
you can look at my compressed version here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画▽骨i 2024-08-17 23:20:10

您可以使用 ImageMagick 将其转换为 G4 tiff:

convert original_scan.jpg -type bilevel -monochrome -compress group4 \
    -negate original_scan.tiff

在我的机器上为 72k。把它拉起来就是 66k。

You can use ImageMagick to convert it to a G4 tiff:

convert original_scan.jpg -type bilevel -monochrome -compress group4 \
    -negate original_scan.tiff

72k on my machine. Zip that up and it's 66k.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文