Obj-C PCX数据到图像(xcode)

时间:2011-11-11 22:23:09

标签: iphone objective-c xcode

在obj-c(xcode iphone)中是否有办法显示来自PCX数据的图像? 我有一个NSData对象,包含PCX图像的所有二进制数据。

1 个答案:

答案 0 :(得分:0)

我有一个包含PCX图像所有二进制数据的NSData对象。

UIImage类引用:有一个实例方法initWithData:- (id)initWithData:(NSData *)data

UIImage * pcxImage = [[[UIImage alloc] initWithData:pcxData] autorelease];
// where pcxData is NSData object of binary data of the image

然后使用UIImageView将其作为subView添加到您的视图中或执行任何操作

UIImageView * myImageView = [[[UIImageView alloc] initWithImage:pcxImage] autorelease];
[myImageView setFrame:CGRectMake(50.0f,50.0f,100.0f,100.0f)];
[self.view addSubView:myImageView];