CIContext drawImage:inRect:fromRect:不起作用

时间:2016-03-10 11:57:31

标签: ios objective-c glkview

我有一个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]];
    }
}

1 个答案:

答案 0 :(得分:0)

通过在我的子类的drawRect方法中编写此代码来解决问题。