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.
我只有红色和白色的图像。在图像处理中,我们可以将图像从 24 位缩小到 8 位或类似的东西。
可以缩小图像尺寸吗?在我的 iPad 应用程序中,我可以将图像保存为 png 或 jpeg。但我想进一步缩小尺寸。我应该如何编写代码?
你研究过方法UIImageJPEGRepresentation吗?一旦你有了你的UIImage,你只需要做类似的事情:
UIImageJPEGRepresentation
UIImage
NSData* imgData = UIImageJPEGRepresentation(myImage, 0.4); //0.4 is the compression rate. [imgData writeToURL:myFileURL atomically:YES];