我想创造一个我自己的形象。我已经知道它的宽度(320*2 = 640)和高度(427)。
所以我有一些原始数据:
unsigned char *rawImg = malloc(height * width * 4 *2 );
然后,我会填写它:)
然后,我必须做类似的事情来获取位图并返回 (UIImage *) :
ctx = CGBitmapContextCreate(rawImg,width*2,height,8,
???,
???,
kCGImageAlphaPremultipliedLast);
UIImage * imgFinal = [UIImage imageWithCGImage:CGBitmapContextCreateImage(ctx)];
CGContextRelease(ctx);
return imgFinal;
但是我不知道如何创建我的上下文 ctx,正如您在“???”中看到的那样,即使我阅读了文档也很艰难......
请帮忙 !谢谢 :)