菜鸟教程小白 发表于 2022-12-13 03:13:18

ios - Objective-C 中的用户自定义裁剪


                                            <p><p>我像这样使用 <code>UIImagePickerController</code> 为 imageView 获取图像</p>

<pre><code> -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    UIImage *originalImage = ;
    CGSize destinationSize1 = CGSizeMake(200, 200);
    UIGraphicsBeginImageContext(destinationSize1);
    ;
    UIImage *newImage1 = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    firstimage1.image = newImage1;
    ;

    NSLog(@&#34;image width is %f&#34;,firstimage1.image.size.width);
    NSLog(@&#34;image height is %f&#34;,firstimage1.image.size.height);
   if (firstimage1.image.size.width==200 &amp;&amp; firstimage1.image.size.height==200) {
    UIAlertView *alertcrp=[initWithTitle:@&#34;message!&#34; message:@&#34;you want to crop this image&#34; delegate:self cancelButtonTitle:@&#34;cancel&#34; otherButtonTitles:nil];
       ;
      ;
      }
}
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
{
    NSLog(@&#34;Button Index =%ld&#34;,(long)buttonIndex);
    if (buttonIndex == 0)
    {
      NSLog(@&#34;You have clicked Cancel&#34;);
    }
    else if(buttonIndex == 1)
    {
   UIImagePickerController *controller = [ init];

      controller.allowsEditing = YES; // this will allow you to crop the image first
      controller.delegate = self;

      ;

    }
}
</code></pre>

<p>我们将图像大小调整为 200*200。现在我需要的是当用户上传图像时。如果图像上传成功,然后打开 alertView“如果你想裁剪图像”。单击裁剪按钮后,我需要打开矩形裁剪 View 。</p>

<p>请告诉我有关我的问题的任何想法。感谢高级。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要做的事情非常简单。首先创建一个 <code>UIScrollView</code> 你想要裁剪的裁剪大小,如果你想通过平移手势等,你可以使它动态化。但是我已经完成了一个恒定的裁剪大小,所以我不会详细介绍.接下来创建一个原始图像大小的 <code>UIImageView</code> 并将其 <code>image proprety</code> 设置为该大小。还要将 <code>scorllview 的内容大小</code> 属性设置为与图像大小完全相同。允许反弹有一些额外的效果。然后在按下裁剪时,您只需将 ScrollView 的内容偏移量和要裁剪的大小(即 ScrollView 的大小,即其宽度和高度)传递给此函数。</p>

<pre><code>- (UIImage *)crop:(UIImage *)image inRect:(CGRect)cropRect
{
    CGImageRef cropRef = CGImageCreateWithImageInRect(image.CGImage, cropRect);
    UIImage* cropImage = ;
    CGImageRelease(cropRef);

    return cropImage;
}
</code></pre>

<p>你可以按照上面的描述调用这个方法</p>

<pre><code>UIImage * img = [ crop:imgView.image inRect:CGRectMake(scrollView.contentOffset.x , scrollView.contentOffset.y , reqWidth, reqHeight)];
</code></pre>

<p>根据您的逻辑制作矩形进行裁剪可能存在错误。但是你应该对做什么有一个大致的了解。如果有什么让您感到困惑或者是否有帮助,请告诉我,以便我可以进一步提供帮助:) </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -Objective-C中的用户自定义裁剪,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26754775/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26754775/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Objective-C 中的用户自定义裁剪