mirror of
https://gitee.com/shuto/cordova-imagePicker.git
synced 2026-05-23 00:05:03 +08:00
26 lines
708 B
Objective-C
26 lines
708 B
Objective-C
//
|
|
// SOSPicker.h
|
|
// SyncOnSet
|
|
//
|
|
// Created by Christopher Sullivan on 10/25/13.
|
|
//
|
|
//
|
|
|
|
#import <Cordova/CDVPlugin.h>
|
|
#import "ELCAlbumPickerController.h"
|
|
#import "ELCImagePickerController.h"
|
|
|
|
@interface SOSPicker : CDVPlugin <ELCImagePickerControllerDelegate, UINavigationControllerDelegate, UIScrollViewDelegate>
|
|
|
|
@property (copy) NSString* callbackId;
|
|
|
|
- (void) getPictures:(CDVInvokedUrlCommand *)command;
|
|
- (UIImage*)imageByScalingNotCroppingForSize:(UIImage*)anImage toSize:(CGSize)frameSize;
|
|
|
|
@property (nonatomic, assign) NSInteger width;
|
|
@property (nonatomic, assign) NSInteger height;
|
|
@property (nonatomic, assign) NSInteger quality;
|
|
@property (nonatomic, assign) NSInteger outputType;
|
|
|
|
@end
|