簡體   English   中英

如何在iPhone中裁剪UIImage?

[英]How to crop the UIImage in iPhone?

在我的應用程序中,我在UIImageView中設置了一張圖像,UIImageView的大小為320 x170。但是原始圖像的大小為320 x460。因此如何裁剪此圖像並在UIImageView中顯示。

這是將圖像裁剪為CGRect的好方法:

- (UIImage*)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect

{

   //create a context to do our clipping in

   UIGraphicsBeginImageContext(rect.size);

   CGContextRef currentContext = UIGraphicsGetCurrentContext();

   //create a rect with the size we want to crop the image to
   //the X and Y here are zero so we start at the beginning of our
   //newly created context

   CGRect clippedRect = CGRectMake(0, 0, rect.size.width, rect.size.height);

   CGContextClipToRect( currentContext, clippedRect);

   //create a rect equivalent to the full size of the image
   //offset the rect by the X and Y we want to start the crop
   //from in order to cut off anything before them

   CGRect drawRect = CGRectMake(rect.origin.x * -1,
                                rect.origin.y * -1,
                                imageToCrop.size.width,
                                imageToCrop.size.height);

   //draw the image to our clipped context using our offset rect

   CGContextDrawImage(currentContext, drawRect, imageToCrop.CGImage);

   //pull the image from our cropped context

   UIImage *cropped = UIGraphicsGetImageFromCurrentImageContext();

   //pop the context to get back to the default

   UIGraphicsEndImageContext();

   //Note: this is autoreleased

   return cropped;

}

或另一種方式:

- (UIImage *)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect
     

{
  CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);
    

  UIImage *cropped = [UIImage imageWithCGImage:imageRef];

  CGImageRelease(imageRef);


      return cropped;
    

}

來自http://www.hive05.com/2008/11/crop-an-image-using-the-iphone-sdk/

您可以調用此函數來裁剪圖像-

- (UIImage *)resizeImage:(UIImage *)oldImage width:(float)imageWidth height:(float)imageHeight {
    UIImage *newImage = oldImage;

    CGSize itemSize = CGSizeMake(imageWidth, imageHeight);
    UIGraphicsBeginImageContext(itemSize);
    CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height);
    [oldImage drawInRect:imageRect];

    newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return newImage;
}

此函數返回UIImage

也許有人對@tirth給出的答案的Swift版本感興趣。 它被編寫為UIImage擴展。 作為示例,我添加了另一種方法來將圖像裁剪為中心正方形版本。

    // MARK: - UIImage extension providing function to crop an image to a rect
    extension UIImage {
        /**
         Return a cropped image from an existing image

         - parameter toRect: a rectangular region for a new image

         - returns: new image instance
         */
        func croppedImage(toRect: CGRect) -> UIImage {
            // create new CGImage reference
            let imageRef = CGImageCreateWithImageInRect(self.CGImage, toRect)
            // create and return new UIImage
            return UIImage(CGImage: imageRef!)
        }

        /**
         Crop center rect from possibly rectangular image

         - returns: return self in case image is already square, new center rect otherwise
         */
        func cropCenterRect() -> UIImage {
            // image might already be square
            if self.size.height == self.size.width {
                return self
            }
            // portrait
            if self.size.height > self.size.width {
                // calculate offset at top and bottom
                let offset = (self.size.height - self.size.width) / 2.0
                // return cropped image
                return self.croppedImage(CGRect(x: 0.0, y: offset, width: self.size.width, height: self.size.width))
            } else {
                // landscape
                // calculate offset left and right
                let offset = (self.size.width - self.size.height) / 2.0
                // return cropped image
                return self.croppedImage(CGRect(x: offset, y: 0.0, width: self.size.height, height: self.size.height))
            }
        }
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM