如何给有形状的图像着色?

发布于 2024-07-27 05:01:16 字数 504 浏览 3 评论 0原文

我知道边界填充是可能的,但已经尝试了 Objective C 中的所有方法,但仍然没有成功。 任何有关代码的帮助将不胜感激。

此代码返回触摸像素的颜色:

unsigned char* data = CGBitmapContextGetData (cgctx);
if (data != NULL) { 
    offset = 4*((w*round(point.y))+round(point.x));
    alpha = data[offset];
    red = data[offset+1];
    green = data[offset+2];
    blue = data[offset+3];
    color = [UIColor colorWithRed:(red/255.0f) green:(green/255.0f) blue:(blue/255.0f) alpha:(alpha/255.0f)];}

我无法为像素着色,有时此代码会在同一像素上返回不同的颜色。

I know its possible with boundary fill, but have tried everything in Objective C and I'm still not successful. Any help with code will be highly appreciated.

This code returns the color of the touched pixel:

unsigned char* data = CGBitmapContextGetData (cgctx);
if (data != NULL) { 
    offset = 4*((w*round(point.y))+round(point.x));
    alpha = data[offset];
    red = data[offset+1];
    green = data[offset+2];
    blue = data[offset+3];
    color = [UIColor colorWithRed:(red/255.0f) green:(green/255.0f) blue:(blue/255.0f) alpha:(alpha/255.0f)];}

I am not able to color the pixel, sometimes this code returns different color on the same pixel.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文