1

我可以画轮廓作为图像吗?

如果有没有轮廓的白色背景图像,我可以使用 CoreGraphics 或代码沿图像绘制轮廓吗?

4

2 回答 2

1

遍历图像中的每个像素,如果它们满足条件,则将它们设置为黑色。或者Edge Detection是另一种方法。

您还可以参考此线程:- https://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more

于 2012-10-14T14:45:02.913 回答
1

UIImageView 周围的简单边框

首先包含 QuartzCore 框架。单击您的项目 -> 构建阶段 -> 将二进制文件与库链接 -> 添加 QuartzCore.framework

#import <QuartzCore/QuartzCore.h>

self.layer.borderWidth = 2.0f;
self.layer.borderColor = [UIColor blackColor].CGColor;
// You can also add a shadow
self.layer.shadowColor = [UIColor blackColor].CGColor;
self.layer.shadowOffset = CGSizeMake(0, 2);

// If you do this in the controller and not the view it would of course be
// myImageView.layer instead of self.layer


于 2012-10-14T15:27:21.403 回答