A iOS View Controller for image cropping. An alternative to the UIImagePickerController editor with extended features. Drop me a line if your're using this on your apps, I would like to know.
- Full image resolution
- Unlimited pan, zoom and rotation
- Zoom and rotation centered on touch area
- Double tap to reset
- Handles EXIF orientations
- Configurable
- Plug-in your own interface
HFImageEditorViewController *imageEditor = [[HFImageEditorViewController alloc] initWithNibName:@"DemoImageEditor" bundle:nil];
imageEditor.sourceImage = image;
imageEditor.doneCallback = ^(UIImage *editedImage, BOOL canceled){
...
}
The full resolution UIImage to crop
For images larger than 1024 wide or 1024 height, the image editor will create a preview image before the view is shown. If a preview is already available you can get a faster transition by setting the preview propety. For instance, if the image was fetched using the UIImagePickerController
:
UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
NSURL *assetURL = [info objectForKey:UIImagePickerControllerReferenceURL];
[self.library assetForURL:assetURL resultBlock:^(ALAsset *asset) {
UIImage *preview = [UIImage imageWithCGImage:[asset aspectRatioThumbnail]];
HFImageEditorViewController *imageEditor = [[HFImageEditorViewController alloc]
initWithNibName:@"DemoImageEditor" bundle:nil];
self.imageEditor.sourceImage = image;
self.imageEditor.previewImage = preview;
...
} failureBlock:^(NSError *error) {
NSLog(@"Failed to get asset from library");
}];
The callback block called when the image editor completes. Returns the cropped image and a BOOL that specifies if completion results from a done
or cancel
actions.
A CGSize specifying the width and height of the crop area in screen coordinates.
A CGRect specifying the crop area in screen coordinates. Use instead of cropSize
if the crop area is not centered.
The width of the cropped image. If not defined, the width of the source image is assumed.
The bounds for image scaling. If not defined, image zoom is unlimited.
Set to true to bound the image scale and pan so that you dont' get a black backround on the resulting image. This will work correctly only if rotation is not enabled.
BOOL property to enable/disable specific gestures
####cropBoundsInSourceImage Returns a CGRect representing the current crop rectangle in the source image coordinates. Source image coordinates have the origin at the bottom left of the image. Note that, if rotation has been applyed, then cropBoundsInSourceImage represents the bounding box of the rotated crop rectangle.
Create your own xib for a custom user interface.
- Set
HFImageEditorViewController
(or subclass) as the file owner - Set the
frameView
outlet. This view must implement theHFImageEditorFrame
protocol. It must be transparent in the crop area, the image will show behind. A default implementation ImageEditorFrameView is provided - Connect interface elements to the available actions:
done
,reset
,resetAnimated
andcancel
.
The demo app also shows how extended controlls can be implemented: three buttons are used for square, portrait and landscape crop.
Use the subclassing hooks (startTransformHook
, endTransformHook
) if you need to update the interface during image processing (to diable UI controls, for instance).
- New
checkBounds
setting to bound the image scale and pan to avoid clear space (only if rotation is not enabled).
- Crop rectangle does not have to be centered - use cropRect to specify the crop area instead of cropSize
- One step transform - orientation fix and cropping on the same operation for improved memory footprint and speed
- Support all EXIF orientation
MIT License
Copyright (c) 2012 Heitor Ferreira
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.