我一直在尝试将数组RGBA数据(int字节)转换为UIImage。我的代码如下所示:
/*height and width are integers denoting the dimensions of the image*/
unsigned char *rawData = malloc(width*height*4);
for (int i=0; i<width*height; ++i)
{
rawData[4*i] = <red_val>;
rawData[4*i+1] = <green_val>;
rawData[4*i+2] = <blue_val>;
rawData[4*i+3] = 255;
}
/*I Have the correct values displayed
- ensuring the rawData is well populated*/
NSLog(@"(%i,%i,%i,%f)",rawData[0],rawData[1],rawData[2],rawData[3]/255.0f);
NSLog(@"(%i,%i,%i,%f)",rawData[4],rawData[5],rawData[6],rawData[7]/255.0f);
NSLog(@"(%i,%i,%i,%f)",rawData[8],rawData[9],rawData[10],rawData[11]/255.0f);
CGDataProviderRef provider = CGDataProviderCreateWithData(NULL,
rawData,
width*height*4,
NULL);
int bitsPerComponent = 8;
int bitsPerPixel = 32;
int bytesPerRow = 4*width;
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
CGColorRenderingIntent renderingIntent = kCGRenderingIntentDefault;
CGImageRef imageRef = CGImageCreate(width,
height,
8,
32,
4*width,colorSpaceRef,
bitmapInfo,
provider,NULL,NO,renderingIntent);
/*I get the current dimensions displayed here */
NSLog(@"width=%i, height: %i", CGImageGetWidth(imageRef),
CGImageGetHeight(imageRef) );
UIImage *newImage = [UIImage imageWithCGImage:imageRef];
/*This is where the problem lies.
The width, height displayed are of completely different dimensions
viz. the width is always zero and the height is a very huge number */
NSLog(@"resultImg width:%i, height:%i",
newImage.size.width,newImage.size.height);
return newImage;
我收到的输出图像是宽度为0,高度为1080950784的图像(假设我的初始高度和宽度分别为240和240)。我一直试图解决这个问题,并检查了许多相关的论坛,例如(link text)关于如何解决这个问题,但收效甚微。
答案 0 :(得分:10)
事实证明,这个问题是我们俩都忽视的一个非常愚蠢的错误。 UIImage维度存储为浮点数,而不是整数。 :d
尝试
NSLog(@"resultImg width:%f, height:%f",
newImage.size.width,newImage.size.height);
相反。图像尺寸已正确传输。
答案 1 :(得分:2)
问题现在解决了。我得到了我想要显示的图像,但仍然无法弄清楚为什么宽度和高度不同。每个人说的程序基本没什么问题。唯一的问题是宽度和高度。
答案 2 :(得分:2)
我只是独立验证了这个问题,我认为它应该被报告为Apple的一个错误。 +(UIImage)imageWithCGImage:
未正确将源CGImageRef
的宽度和高度传输到UIImage
。