使用核心图形创建带有轮廓的图像
Posted
技术标签:
【中文标题】使用核心图形创建带有轮廓的图像【英文标题】:Create image with outlines using core graphics 【发布时间】:2015-07-25 09:06:40 【问题描述】:我需要帮助来创建与此类似的图像:
【问题讨论】:
【参考方案1】:如果您创建UIView
的子类,例如CustomView
,你唯一需要做的就是实现drawRect:
方法:
- (void)drawRect:(CGRect)rect
[super drawRect:rect];
// set fill & stroke color
[[UIColor blueColor] setStroke];
[[UIColor purpleColor] setFill];
// create blocks
CGFloat blockWidth = self.bounds.size.width / 3;
CGFloat blockHeight = self.bounds.size.height;
for (int i = 0; i < 3; i++)
UIBezierPath *path = [UIBezierPath bezierPathWithRect:
CGRectMake(blockWidth * i, 0, blockWidth, blockHeight);
path.lineWidth = 2;
[path fill];
[path stroke];
【讨论】:
感谢您的回答,我需要将该视图转换为图像。它现在对我有用。 这很简单:我找到了一些代码here。但在这种情况下,你最好使用像 GIMP 这样的绘图程序。以上是关于使用核心图形创建带有轮廓的图像的主要内容,如果未能解决你的问题,请参考以下文章