jpeg2000 on ios app

后端 未结 2 609
感情败类
感情败类 2020-12-16 08:17

Has anyone had luck converting and using jpeg2000 on the ios? I am writing and inventory app and would love to go with a jpeg2000 file type if I can figure out how to get th

相关标签:
2条回答
  • 2020-12-16 09:00

    Image IO has nice image conversion functions that eliminate the need for 3rd party code. See more here: How do I convert UIImage to J2K (JPEG2000) in iOS?

    No need to bring in the JPEG 2000 project.

    0 讨论(0)
  • 2020-12-16 09:04

    We used JPEG 2000 for my last project (Spot.app)

    I downloaded the official open-source JPEG 2000 codec source from here: http://www.openjpeg.org/index.php?menu=download

    Build it into a static library and voila.

    Here's some sample code I created: https://gist.github.com/1861465

    0 讨论(0)
提交回复
热议问题