All Projects → itouch2 → Phototweaks

itouch2 / Phototweaks

Licence: mit
Drag, Rotate, Scale and Crop

Projects that are alternatives of or similar to Phototweaks

Igrphototweaks
Drag, Rotate, Scale and Crop
Stars: ✭ 212 (-82.54%)
Mutual labels:  photos, crop, drag
Krgallery
Crop , Video, Photos, from Telegram
Stars: ✭ 116 (-90.44%)
Mutual labels:  photos, crop
Fmphotopicker
A modern, simple and zero-dependency photo picker with an elegant and customizable image editor
Stars: ✭ 428 (-64.74%)
Mutual labels:  photos, crop
Rxpaparazzo
RxJava extension for Android to take images using camera and gallery and pick files up
Stars: ✭ 467 (-61.53%)
Mutual labels:  photos, crop
Nova Advanced Image Field
🌄📐 A Laravel Nova advanced image field with cropping and resizing using Cropper.js and Intervention Image
Stars: ✭ 67 (-94.48%)
Mutual labels:  crop
Bmlongpressdragcellcollectionview
🎉 🎉 🎉 🎉 🎉 让你轻松实现类似支付宝的拖拽重排功能, 支持各种自定义操作。
Stars: ✭ 1,090 (-10.21%)
Mutual labels:  drag
Batchimageprocessor
A Mass Image Processing tool for Windows
Stars: ✭ 55 (-95.47%)
Mutual labels:  crop
Vuejs Carousel
Complete photo carousel build with VueJS and web standards in mind
Stars: ✭ 53 (-95.63%)
Mutual labels:  photos
Docker Icloudpd
An Alpine Linux 3.13 container for the iCloud Photos Downloader command line utility
Stars: ✭ 76 (-93.74%)
Mutual labels:  photos
Tumblr Liked Photos Export
Export the photos from your liked posts in tumblr
Stars: ✭ 74 (-93.9%)
Mutual labels:  photos
Vue Smooth Dnd
Vue wrapper components for smooth-dnd
Stars: ✭ 1,121 (-7.66%)
Mutual labels:  drag
React Easy Crop
A React component to crop images/videos with easy interactions
Stars: ✭ 1,093 (-9.97%)
Mutual labels:  crop
Stickerview
[No more support] A view which can add sticker and zoom,drag,delete it
Stars: ✭ 1,155 (-4.86%)
Mutual labels:  drag
Mue
Fast, open and free-to-use new tab page for modern browsers
Stars: ✭ 56 (-95.39%)
Mutual labels:  photos
Livephoto
A single-file library for working with Apple Live Photos
Stars: ✭ 75 (-93.82%)
Mutual labels:  photos
Photo Blog
The Photo Blog Application based on Laravel 5 and Vue.js 2 + Prerender
Stars: ✭ 55 (-95.47%)
Mutual labels:  photos
Tumblr Crawler
Easily download all the photos/videos from tumblr blogs. 下载指定的 Tumblr 博客中的图片,视频
Stars: ✭ 1,118 (-7.91%)
Mutual labels:  photos
Bsimagepicker
A multiple image picker for iOS
Stars: ✭ 1,171 (-3.54%)
Mutual labels:  photos
Imageselector
图片选择器, 支持多图选择和图片预览
Stars: ✭ 62 (-94.89%)
Mutual labels:  photos
Dragranksquare
edit personal information which enables users to drag and rank image order
Stars: ✭ 1,115 (-8.15%)
Mutual labels:  drag

PhotoTweaks

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].