ios – 如何基于不规则形状裁剪图像?

前端之家收集整理的这篇文章主要介绍了ios – 如何基于不规则形状裁剪图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想基于不规则形状的蒙版在iOS中裁剪图像.我怎样才能做到这一点?

解决方法

我不确定你想裁剪,但你想掩盖图像.这很容易做到,但你最终会发现它适用于某些图像,而不适用于其他图像.这是因为您需要在图像中使用正确的Alpha通道.

这里是我使用的代码,我从stackoverflow获得. (Problem with transparency when converting UIView to UIImage)

  1. CGImageRef CopyImageAndAddAlphaChannel(CGImageRef sourceImage) {
  2. CGImageRef retVal = NULL;
  3.  
  4. size_t width = CGImageGetWidth(sourceImage);
  5. size_t height = CGImageGetHeight(sourceImage);
  6.  
  7. CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
  8.  
  9. CGContextRef offscreenContext = CGBitmapContextCreate(NULL,width,height,8,colorSpace,kCGImageAlphaPremultipliedFirst);
  10.  
  11. if (offscreenContext != NULL) {
  12. CGContextDrawImage(offscreenContext,CGRectMake(0,height),sourceImage);
  13.  
  14. retVal = CGBitmapContextCreateImage(offscreenContext);
  15. CGContextRelease(offscreenContext);
  16. }
  17.  
  18. CGColorSpaceRelease(colorSpace);
  19.  
  20. return retVal;
  21. }
  22.  
  23. - (UIImage*)maskImage:(UIImage *)image withMask:(UIImage *)maskImage {
  24. CGImageRef maskRef = maskImage.CGImage;
  25. CGImageRef mask = CGImageMaskCreate(CGImageGetWidth(maskRef),CGImageGetHeight(maskRef),CGImageGetBitsPerComponent(maskRef),CGImageGetBitsPerPixel(maskRef),CGImageGetBytesPerRow(maskRef),CGImageGetDataProvider(maskRef),NULL,false);
  26.  
  27. CGImageRef sourceImage = [image CGImage];
  28. CGImageRef imageWithAlpha = sourceImage;
  29. //add alpha channel for images that don't have one (ie GIF,JPEG,etc...)
  30. //this however has a computational cost
  31. // needed to comment out this check. Some images were reporting that they
  32. // had an alpha channel when they didn't! So we always create the channel.
  33. // It isn't expected that the wheelin application will be doing this a lot so
  34. // the computational cost isn't onerous.
  35. //if (CGImageGetAlphaInfo(sourceImage) == kCGImageAlphaNone) {
  36. imageWithAlpha = CopyImageAndAddAlphaChannel(sourceImage);
  37. //}
  38.  
  39. CGImageRef masked = CGImageCreateWithMask(imageWithAlpha,mask);
  40. CGImageRelease(mask);
  41.  
  42. //release imageWithAlpha if it was created by CopyImageAndAddAlphaChannel
  43. if (sourceImage != imageWithAlpha) {
  44. CGImageRelease(imageWithAlpha);
  45. }
  46.  
  47. UIImage* retImage = [UIImage imageWithCGImage:masked];
  48. CGImageRelease(masked);
  49.  
  50. return retImage;
  51. }

你这样称呼它:

  1. customImage = [customImage maskImage:customImage withMask:[UIImage imageNamed:@"CircularMask.png"]];

在这种情况下,我使用圆形蒙版来制作圆形图像.你需要制作适合你需要的不规则面膜.

猜你在找的iOS相关文章