我有一个GLKView
用于用户绘图的子类。但是当他打开相应的屏幕时,我还需要绘制他最新的绘图图像。问题出在第二部分,因为似乎我做错了什么导致drawImage:inRect:fromRect:
无法工作。
这是我的绘图代码。
-(void)setSignatureImage:(UIImage *)image {
EAGLContext *context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
self.context = context;
[EAGLContext setCurrentContext:context];
self.drawableDepthFormat = GLKViewDrawableDepthFormat24;
self.enableSetNeedsDisplay = YES;
CIContext *cicontext = [CIContext contextWithEAGLContext:context options:@{kCIContextWorkingColorSpace : [NSNull null]} ];
UIImage *pre_img = image;
CIImage *outputImage = [CIImage imageWithCGImage:pre_img.CGImage];
if (outputImage) {
[cicontext drawImage:outputImage inRect:[outputImage extent] fromRect:[outputImage extent]];
}
}