/JFImageSavePanel

NSSavePanel wrapper for image save dialogs, similar to those in Preview.app

Primary LanguageObjective-CMIT LicenseMIT

JFImageSavePanel

Version License Platform

NSSavePanel wrapper for image save dialogs, similar to those in Preview.app.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

JFImageSavePanel is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "JFImageSavePanel"

Screenshot

JFImageSavePanel

Usage Example

JFImageSavePanel *panel = [JFImageSavePanel savePanel];

NSImage *image = [[NSImage alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://..."]];

// This is the default image type, which can be changed.
// Possible values: kUTTypeJPEG, kUTTypeJPEG2000, kUTTypePNG, kUTTypeTIFF.
[panel setImageType:kUTTypeJPEG];

// Image will be saved to selected path if 'OK' button is pressed
[panel runModalForImage:image error:NULL];

Copyright and License

© 2012 Jason Frame [ jason@onehackoranother.com / @jaz303 ]
MIT Licensed