如何在iPhone sdk中获取彩色图像
我想要如下的东西
UIImage *solid = [UIImage imageWithColor:[UIColor darkGrayColor]];
来创建关于某种颜色的图像。
如何在 iPhone sdk 中做到这一点。
I want something as follows
UIImage *solid = [UIImage imageWithColor:[UIColor darkGrayColor]];
to create an image with respect to some color.
how to do it in iPhone sdk.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只是想创建一个纯色矩形,为什么不直接执行类似的操作
,然后将视图添加到您想要显示纯色的任何子视图中。
(当然,只有当这就是你想要实现的目标时。也许你不是)
If you're just trying to create a solid rectangle of colour why not just do something like
And then add the view to whatever subview you want to show the solid colour.
(That is, of course only if that's what you're trying to achieve. Maybe you aren't)
您可以将颜色绘制到 CGContext 中,然后从中捕获图像:
You can draw the color into a CGContext and then capture an image from it: