iPhone以编程方式查找ios支持的图像格式

时间:2012-02-06 06:44:43

标签: iphone

任何人都可以告诉我如何在iPhone SDK中以编程方式查找iOS支持的图像格式吗?

2 个答案:

答案 0 :(得分:3)

文档列出了支持的图像格式。

https://developer.apple.com/library/ios/#documentation/uikit/reference/UIImage_Class/Reference/Reference.html

Tagged Image File Format (TIFF) .tiff, .tif 
Joint Photographic Experts Group (JPEG) .jpg, .jpeg  
Graphic Interchange Format (GIF) .gif 
Portable Network Graphic (PNG) .png 
Windows Bitmap Format (DIB) .bmp, .BMPf 
Windows Icon Format .ico 
Windows Cursor .cur
XWindow bitmap .xbm

答案 1 :(得分:0)

在Mac OS X上,您可以调用[[NSImage class] imageFileTypes]来获取支持的图像文件类型,但iOS的UIImage类似乎没有类似的功能。