在obj-c(xcode iphone)中是否有办法显示来自PCX数据的图像? 我有一个NSData对象,包含PCX图像的所有二进制数据。
答案 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];