0

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

1 回答 1

0

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

于 2016-03-15T12:10:06.453 回答