我有一些问题。
我有一个加载的 UIImage,我想:
1st - 在我加载的 UIImage 上绘制另一个图像
第二 - 在我加载的 UIImage 上画一条线(带有颜色和粗细)
如果您能提出一些基本的东西,我将不胜感激,我仍然是菜鸟:)
我有一些问题。
我有一个加载的 UIImage,我想:
1st - 在我加载的 UIImage 上绘制另一个图像
第二 - 在我加载的 UIImage 上画一条线(带有颜色和粗细)
如果您能提出一些基本的东西,我将不胜感激,我仍然是菜鸟:)
还有另一种选择,它使用核心图形。
UIGraphicsBeginImageContextWithOptions(size, NO, 0.0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
UIImage *bottomImage = ...;
CGRect bottomImageRect = ...;
CGContextScaleCTM(context, 1.0, -1.0);
CGContextTranslateCTM(context, 0, -bottomImageRect.size.height);
CGContextDrawImage(context, bottomImageRect, bottomImage.CGImage);
CGContextRestoreGState(context);
CGContextSaveGState(context);
UIImage *topImage = ...;
CGRect topImageRect = ...;
CGContextScaleCTM(context, 1.0, -1.0);
CGContextTranslateCTM(context, 0, -topImageRect.size.height);
CGContextDrawImage(context, topImageRect, topImage.CGImage);
CGContextRestoreGState(context);
CGPoint origin = ...;
CGPoint end = ...;
CGContextMoveToPoint(context, origin.x, origin.y);
CGContextAddLineToPoint(context, end.x, end.y);
CGContextSetStrokeColorWithColor(context, [UIColor whatever].CGColor);
CGContextStrokePath(context);
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
编辑: 稍微更改了代码,以便图像不会倒置