开发者

How to scale JPEG image down so that text is clear as possible?

I have some JPEG images that I need scale down to about 80% of original size. Original image dimension are about 700px × 1000px. Ima开发者_如何学编程ges contain some computer generated text and possibly some graphics (similar to what you would find in corporate word documents).

How to scale image so that the text is as legible as possible? Currently we are scaling the imaeg down using bicubic interpolation, but that makes the text blurry and foggy.


Two options:

  1. Use a different resampling algorithm. Lanczos gives you a much less blurrier result.

  2. You ight use an advances JPEG library that resamples the 8x8 blocks to 6x6 pixels.


If you are not set on exactly 80% you can try getting and building djpeg from http://www.ijg.org/ as it can decompress your jpeg to 6/8ths (75%) or 7/8ths (87.5%) size and the text quality will still be pretty good:

Original

7/8

3/4

(SO decided to scale the images when showing them inline)

There may be a scaling algorithm out there that works similarly, but this is an easy off the shelf solution.


There is always a loss involved in scaling down, but it again depends of your trade offs.

  1. Blurring and artifact generation is normal for jpeg images, so its recommended that you generate images is the correct size the first time.
  2. Lanczos is a fine solution, but you have your trade offs
  3. If its just the text and you are concerned about it, you could try dilation filter over the resampled image. This would correct some blurriness but may also affects the graphics. If you can live with it, its good. Alternatively if you can identify the areas of text, you can apply dilation just over those areas.
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜