4

我有一个使用 CGContextDrawImage 函数组合两个图像的应用程序。这是我的问题。只有一个图像出现,而另一个没有出现在 iphone 5 的 ios 模拟器中,而在 iphone 3 的 iphone 模拟器上显示这些图像没有问题,我没有任何问题。顺便说一下,这里是 Xcode 给我的错误列表。

//错误

: CGContextRotateCTM: 无效的上下文 0x0。这是一个严重的错误。此应用程序或它使用的库正在使用无效的上下文,从而导致系统稳定性和可靠性的整体下降。此通知是出于礼貌:请解决此问题。这将成为即将到来的更新中的致命错误。

:CGContextDrawImage:无效的上下文0x0。这是一个严重的错误。此应用程序或它使用的库正在使用无效的上下文,从而导致系统稳定性和可靠性的整体下降。此通知是出于礼貌:请解决此问题。这将成为即将到来的更新中的致命错误。

:CGBitmapContextCreateImage:无效的上下文 0x0。这是一个严重的错误。此应用程序或它使用的库正在使用无效的上下文,从而导致系统稳定性和可靠性的整体下降。此通知是出于礼貌:请解决此问题。这将成为即将到来的更新中的致命错误。

任何人都可以帮助我吗?提前致谢。

这是我的示例代码:

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGRect xFirstFrame = m_pUserImgView.frame;
int nWidth = xFirstFrame.size.width;
int nHeight = xFirstFrame.size.height;
CGFloat rScaleX;
CGPoint xOrgCenter;
UIImage* pJustinImage = m_pJustinImgView.image;
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
    xOrgCenter = CGPointMake(384, 512);
}
else
    if ([self appDelegate].isiPhone5 == YES)
    {
        xOrgCenter = CGPointMake(160, 284);
    }
    else
    {
        xOrgCenter = CGPointMake(160, 240);
    }
CGContextRef buf_context = CGBitmapContextCreate(nil, nWidth, nHeight, 8, nWidth * 4, colorSpace, kCGImageAlphaPremultipliedLast);
CGColorSpaceRelease(colorSpace);
CGRect rect = CGRectMake(0,0, nWidth, nHeight);
CGRect xSecRect = m_pJustinImgView.bounds;
UIGraphicsPushContext(buf_context);
CGContextClearRect(buf_context, rect);
CGContextDrawImage(buf_context, rect, m_pUserImgView.image.CGImage);
//Transform Context
CGAffineTransform pTransform = m_pJustinImgView.transform;
CGAffineTransform xRealTrans = CGAffineTransformMake(pTransform.a, pTransform.b, pTransform.c, pTransform.d, pTransform.tx, -pTransform.ty);

CGPoint xOrgPoint = CGPointMake(xOrgCenter.x + pTransform.tx, xOrgCenter.y - pTransform.ty);
CGFloat rDegree = [self CalcRotateAngle:xRealTrans];
CGContextTranslateCTM(buf_context, xOrgPoint.x, xOrgPoint.y);
CGContextRotateCTM(buf_context, -rDegree);
rScaleX = sqrtf(pTransform.a * pTransform.a + pTransform.c * pTransform.c);
CGContextDrawImage(buf_context, CGRectMake(- xSecRect.size.width * rScaleX/2, - xSecRect.size.height * rScaleX/2, xSecRect.size.width * rScaleX , xSecRect.size.height * rScaleX), pJustinImage.CGImage);
UIGraphicsPopContext();

CGImageRef image = CGBitmapContextCreateImage(buf_context);
CGContextRelease(buf_context);

UIImage* pCombImage = [[UIImage alloc] initWithCGImage:image];
CGImageRelease(image);

return pCombImage;

}

//图片加载代码

CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
CGRect xFirstFrame = m_pBackImageView.frame;



int nWidth = xFirstFrame.size.width;
int nHeight = xFirstFrame.size.height;
CGFloat rScaleX;
CGPoint xOrgCenter;

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
    xOrgCenter = CGPointMake(384, 512);
}
else
{
    if ([self appDelegate].isiPhone5 == YES)
    {
        xOrgCenter = CGPointMake(160, 284);
    }
    else
    {
        xOrgCenter = CGPointMake(160, 240);
    }
}

CGContextRef buf_context = CGBitmapContextCreate(nil, nWidth, nHeight, 8, nWidth * 4, colorSpace, kCGImageAlphaPremultipliedLast);
CGColorSpaceRelease(colorSpace);
CGRect rect = CGRectMake(0,0, nWidth, nHeight);
CGRect xSecRect = m_pUserImgView.bounds;
UIGraphicsPushContext(buf_context);
CGContextClearRect(buf_context, rect);
CGContextDrawImage(buf_context, rect, m_pBackImageView.image.CGImage);
//Transform Context
CGAffineTransform pTransform = m_pUserImgView.transform;
CGAffineTransform xRealTrans = CGAffineTransformMake(pTransform.a, pTransform.b, pTransform.c, pTransform.d, pTransform.tx, -pTransform.ty);

CGPoint xOrgPoint = CGPointMake(xOrgCenter.x + pTransform.tx, xOrgCenter.y - pTransform.ty);
CGFloat rDegree = [self CalcRotateAngle:xRealTrans];
CGContextTranslateCTM(buf_context, xOrgPoint.x, xOrgPoint.y);
CGContextRotateCTM(buf_context, -rDegree);
rScaleX = sqrtf(pTransform.a * pTransform.a + pTransform.c * pTransform.c);
CGContextDrawImage(buf_context, CGRectMake(- xSecRect.size.width * rScaleX/2, - xSecRect.size.height * rScaleX/2, xSecRect.size.width * rScaleX , xSecRect.size.height * rScaleX), m_pUserImgView.m_pViewImage.CGImage);
UIGraphicsPopContext();

CGImageRef image = CGBitmapContextCreateImage(buf_context);
CGContextRelease(buf_context);

UIImage* pCombImage = [[UIImage alloc] initWithCGImage:image];
CGImageRelease(image);

return pCombImage;
4

2 回答 2

10

试试这个:在 xcode 中将符号断点添加到CGPostError。(添加符号断点和符号字段类型CGPostError

发生错误时,调试器将停止代码执行,您可以检查方法调用堆栈并检查参数。寻找 0 尺寸的表面。某些参数的大小为 0。

于 2014-02-28T10:34:18.360 回答
0

您应该在drawRectUIImageView 子类的 : 方法中创建上下文,然后将该上下文传递给您的方法。由于您返回 UIImage 实例并ContextRef在其中创建,很明显您在不使用以下情况下进行绘图drawRect

你可以做什么 1. 创建 UIView 或 UIImageView 的子类, 2. 在 drawRect 中获取上下文: 3. 通过调用 drawRect 中的绘图方法将上下文传递给绘图方法: 像这样

   - (void)drawRect:(CGRect)rect
    {
        CGContextRef buf_context = UIGraphicsGetCurrentContext();

    //    CGContextRef buf_context = CGBitmapContextCreate(nil, nWidth, nHeight, 8, nWidth * 4, colorSpace, kCGImageAlphaPremultipliedLast);

      UIImage  *pCombImage =  [self drawMyBeutifulImagesInRect:rect inContext: buf_context];


    }
  1. 用你的方法做你的画,用buf_context...
  2. 别忘了,千万不要直接调用 drawRect: 而是调用setNeedsDisplay强制重绘或刷新绘图。我希望这有帮助
于 2014-03-05T11:11:43.120 回答