Я пытаюсь получить CGContextRef из UIImage. Всегда мой CGContextRef 0x0 в отладчике.
Вот код:
NSString *movName = imgName;
NSString *path = [[NSBundle mainBundle] pathForResource:movName ofType:@"png"];
UIImage *image = [[UIImage alloc] initWithContentsOfFile:path];
CGImageRef imageRef = [image CGImage];
CGBitmapInfo bitmapInfo = CGImageGetBitmapInfo(imageRef);
CGColorSpaceRef colorSpaceInfo = CGImageGetColorSpace(imageRef);
CGContextRef bitmap = CGBitmapContextCreate(NULL,
100,
100,
CGImageGetBitsPerComponent(imageRef),
CGImageGetBytesPerRow(imageRef),
colorSpaceInfo,
bitmapInfo);
спасибо, что ответили