1

我是我的应用程序,我需要裁剪和从互联网下载的图像。我使用这种方法下载图像:

- (void) loadImageFromWeb {
    NSURL* url = [NSURL URLWithString:self.imageURL];
    NSURLRequest* request = [NSURLRequest requestWithURL:url];


    [NSURLConnection sendAsynchronousRequest:request
                                       queue:[NSOperationQueue mainQueue]
                           completionHandler:^(NSURLResponse * response,
                                               NSData * data,
                                               NSError * error) {
                               if (!error){
                                   UIImage* image = [[UIImage alloc] initWithData:data];
                                   [self.imageViewEpisode setImage:image];
                               }

                           }];
}

我怎样才能裁剪它?

4

2 回答 2

1

定义一个矩形,这个矩形将是您图像的裁剪区域。

CGRect croprect  = CGRectMake(x,y,width, height);

CGImageRef subImage = CGImageCreateWithImageInRect (yourimage,croprect);

在这里,我们使用 CoreGraphics 从您的图像创建子图像。

Creates a bitmap image using the data contained within a subregion of an existing bitmap image.

CGImageRef CGImageCreateWithImageInRect (
   CGImageRef image,
   CGRect rect
);

Parameters

image

    The image to extract the subimage from. 
rect

    A rectangle whose coordinates specify the area to create an image from.

Return Value

A CGImage object that specifies a subimage of the image. If the rect parameter defines an area that is not in the image, returns NULL.

最后生成图像,

UIImage *newImage = [UIImage imageWithCGImage:subImage];

于 2013-07-22T10:38:55.290 回答
0

多个库可以为您做到这一点。您可以选择一个并使用它,或者研究一对并了解它是如何完成的。

于 2013-07-22T10:35:14.420 回答