SkillAgentSearch skills...

PhotoTweaks

Drag, Rotate, Scale and Crop

Install / Use

/learn @itouch2/PhotoTweaks
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<p align="center"><img src="https://cloud.githubusercontent.com/assets/4316898/6525211/cef0bbce-c43d-11e4-9b64-deb65c64c683.png" height="200"/> </p> <h1 align="center">PhotoTweaks</h1>

PhotoTweaks is an interface to crop photos. It can let user drag, rotate, scale the image, and crop it. You will find it mimics the interaction of Photos.app on iOS 8. :]

Pod Version Platform License

Usage

PhotoTweaksViewController offers all the operations to crop the photo, which includes translation, rotate and scale.

To use it,

UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
PhotoTweaksViewController *photoTweaksViewController = [[PhotoTweaksViewController alloc] initWithImage:image];
photoTweaksViewController.delegate = self;
photoTweaksViewController.autoSaveToLibray = YES;
photoTweaksViewController.maxRotationAngle = M_PI_4;
[picker pushViewController:photoTweaksViewController animated:YES];

maxRotationAngle is the property to set the maximum supported rotation angle.

Get the cropped image

- (void)photoTweaksController:(PhotoTweaksViewController *)controller didFinishWithCroppedImage:(UIImage *)croppedImage
{
    [controller.navigationController dismissViewControllerAnimated:YES completion:nil];
    // cropped image
}

Installation

PhotoTweaks is available on CocoaPods. Add the follwing to your Podfile:

pod 'PhotoTweaks', '~> 1.0.4'

Alternatively, you can manually drag the PhotoTweaks folder into your Xcode project.

A Quick Peek

screenshots

Protip

If using with an existing UIImagePickerController, be sure to set allowsEditing = NO otherwise you may force the user to crop with the native editing tool before showing PhotoTweaksViewController.

View on GitHub
GitHub Stars1.3k
CategoryDevelopment
Updated10d ago
Forks163

Languages

Objective-C

Security Score

100/100

Audited on Mar 17, 2026

No findings