如何在UIImage中裁剪中心广场?

Dan*_*mes 14 crop uiimage ios

对这个问题感到抱歉,但我在SO搜索了很多帖子,但我一无所获.

问题是:如何在UIImage中裁剪中心广场?

我尝试了下面的代码,但没有成功.裁剪发生,但在左上角.

-(UIImage*)imageCrop:(UIImage*)original
{
    UIImage *ret = nil;

    // This calculates the crop area.

    float originalWidth  = original.size.width;
    float originalHeight = original.size.height;

    float edge = fminf(originalWidth, originalHeight);

    float posX = (originalWidth   - edge) / 2.0f;
    float posY = (originalHeight  - edge) / 2.0f;


    CGRect cropSquare = CGRectMake(posX, posY,
                                   edge, edge);


    // This performs the image cropping.

    CGImageRef imageRef = CGImageCreateWithImageInRect([original CGImage], cropSquare);

    ret = [UIImage imageWithCGImage:imageRef
                              scale:original.scale
                        orientation:original.imageOrientation];

    CGImageRelease(imageRef);

    return ret;
}
Run Code Online (Sandbox Code Playgroud)

Dan*_*mes 15

添加更多信息,我在拍照后使用这个"裁剪".

经过一些测试,我发现了一些有效的方法.

// If orientation indicates a change to portrait.
if(original.imageOrientation == UIImageOrientationLeft ||
   original.imageOrientation == UIImageOrientationRight)
{
    cropSquare = CGRectMake(posY, posX,
                            edge, edge);

}
else
{
    cropSquare = CGRectMake(posX, posY,
                            edge, edge);
}
Run Code Online (Sandbox Code Playgroud)