Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个图像管理应用程序。
我想尽可能快地打开一个 jpeg 及其缩略图。所以用户可以享受查看他们的图像。
在 IOS 中解码 Jpeg 的最快库是哪个?
我曾经使用 IJL 并以 1/8 大小解码图像,它在 PC 中非常快。iOS 中是否有类似 IJL 的 lib?</p>
非常感谢!
您可以编译和使用 libjpeg (http://www.ijg.org/)。
要快速打开缩略图,请设置scale_num和scale_denom值:
scale_num
scale_denom
jpeg_decompress_struct * cinfo_; /// ..... cinfo_->scale_num = 1; cinfo_->scale_denom = 8; // open photo in 1/8 size