iOS 中的自定义图像遮罩

发布于 11-05 13:38 字数 459 浏览 6 评论 0原文

我在遮罩图像方面遇到问题。我玩“拼图”游戏并且必须制作自定义图像。我发现并尝试了两种自定义裁剪的方法:

  1. 使用 CALayer.mask 属性。
  2. 使用 UIImage.mask 属性。

在第一个选项中,我创建自定义路径,然后将其分配给 CAShapeLayer.path 属性,然后将 CAShapeLayer 分配给 CALayer.mask 属性。最后我有自定义裁剪的图像。 在第二个选项中,我首先使用 CGImageMaskCreate() 方法(我使用之前创建的拼图的黑色蒙版图像),然后使用 CGContextClipToMask()。 在这两个选项中,我都遇到性能问题(主要是当我将图像裁剪成 16 个拼图并拖到屏幕上时)。

是否有任何其他方法以自定义方式裁剪图像。 (我不知道如何解决性能问题)。 提前致谢。

I have a issue with masking images. I do game "puzzle" and have to make custom images. I found and tried 2 way of custom cropping:

  1. Using CALayer.mask property.
  2. Using UIImage.mask property.

In first option i create my custom path, then assign it to CAShapeLayer.path property, then assign CAShapeLayer to CALayer.mask property. At the end i have custom cropped image.
In second option i use firstly use CGImageMaskCreate() method (i use previously created black mask images of puzzle), then CGContextClipToMask().
In either options i have problem with performance (mostly when i crop image into 16 puzzles and drag in over the screen).

Is there any other approaches to crop image in custom way.
(I don't know how to solve performance problem).
Thanks in advance.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

方圜几里2024-11-12 13:38:48

试试这个:

-(UIImage *)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect
{
    CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);

    UIImage *cropped = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);

    return cropped;
}

...

UIImage *temp_image = [self imageByCropping:original_image toRect:clipping_rectangle];

Try this:

-(UIImage *)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect
{
    CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);

    UIImage *cropped = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);

    return cropped;
}

...

UIImage *temp_image = [self imageByCropping:original_image toRect:clipping_rectangle];
贪了杯2024-11-12 13:38:48

也许您应该考虑在具有 alpha 背景的新图像中绘制图像并过度绘制当前背景。我的意思是:拼图块内部的所有像素:正常颜色,拼图块外部的所有像素=透明。然后尝试将其混合到新背景或过度绘制它。

只是我的2分钱。 :)

Maybe you should consider about drawing the image in a new image with an alpha background an overdrawing the current background. I mean: All pixel which are inside the jigsaw piece: normal colour, all pixels outside the jigsaw piece = transparent. And then try to blend it to the new background or overdrawing it.

Just my 2 cents. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文