I have a use for this plugin on both iOS and Android:
https://github.com/raananw/PhoneGap-Image-Resizer
I know that any PhoneGap.exec calls have to be replaced with cordova.exec, but what else needs to be addressed to get this to get this plugin converted? I can't get it to work on either platform so any help will be much appreciated.
Here's the common .JS file contents:
var ImageResizer = function() {
};
ImageResizer.IMAGE_DATA_TYPE_BASE64 = "base64Image";
ImageResizer.IMAGE_DATA_TYPE_URL = "urlImage";
ImageResizer.RESIZE_TYPE_FACTOR = "factorResize";
ImageResizer.RESIZE_TYPE_PIXEL = "pixelResize";
ImageResizer.FORMAT_JPG = "jpg";
ImageResizer.FORMAT_PNG = "png";
/**
* Resize an image
* @param success success callback, will receive the data sent from the native plugin
* @param fail error callback, will receive an error string describing what went wrong
* @param imageData The image data, either base64 or local url
* @param width width factor / width in pixels
* @param height height factor / height in pixels
* @param options extra options -
* format : file format to use (ImageResizer.FORMAT_JPG/ImageResizer.FORMAT_PNG) - defaults to JPG
* imageDataType : the data type (IMAGE_DATA_TYPE_BASE64/IMAGE_DATA_TYPE_URL) - defaults to Base64
* resizeType : type of the resize (RESIZE_TYPE_FACTOR/RESIZE_TYPE_PIXEL) - must be given
* quality : INTEGER, compression quality - defaults to 70
* @returns JSON Object with the following parameters:
* imageData : Base64 of the resized image
* height : height of the resized image
* width: width of the resized image
*/
ImageResizer.prototype.resizeImage = function(success, fail, imageData, width,
height, options) {
if (!options) {
options = {}
}
var params = {
data : imageData,
width : width,
height : height,
format : options.format,
imageDataType : options.imageType,
resizeType : options.resizeType,
quality : options.quality ? options.quality : 70
};
return PhoneGap.exec(success, fail, "com.webXells.imageResizer",
"resizeImage", [params]);
}
/**
* Get an image width and height
* @param success success callback, will receive the data sent from the native plugin
* @param fail error callback, will receive an error string describing what went wrong
* @param imageData The image data, either base64 or local url
* @param options extra options -
* imageDataType : the data type (IMAGE_DATA_TYPE_BASE64/IMAGE_DATA_TYPE_URL) - defaults to Base64
* @returns JSON Object with the following parameters:
* height : height of the image
* width: width of the image
*/
ImageResizer.prototype.getImageSize = function(success, fail, imageData,
options) {
if (!options) {
options = {}
}
var params = {
data : imageData,
imageDataType : options.imageType
};
return PhoneGap.exec(success, fail, "com.webXells.imageResizer",
"imageSize", [params]);
}
/**
* Store an image locally
* @param success success callback, will receive the data sent from the native plugin
* @param fail error callback, will receive an error string describing what went wrong
* @param imageData The image data, either base64 or local url
* @param options extra options -
* format : file format to use (ImageResizer.FORMAT_JPG/ImageResizer.FORMAT_PNG) - defaults to JPG
* imageDataType : the data type (IMAGE_DATA_TYPE_BASE64/IMAGE_DATA_TYPE_URL) - defaults to Base64
* filename : filename to be stored, with ot without ending (if no ending given, format will be used) - must be given.
* directory : in which directory should the file be stored - must be given
* quality : INTEGER, compression quality - defaults to 100
* photoAlbum : [iOS only] store the image in the temporary directory of the app, or in the photoAlbum (true for photoAlbum)
* Note : in iOS only filename should be given, directory will be ignored.
* @returns JSON Object with the following parameters:
* url : URL of the file just stored
*/
ImageResizer.prototype.storeImage = function(success, fail, imageData, options) {
if (!options) {
options = {}
}
var params = {
data : imageData,
format : options.format,
imageDataType : options.imageType,
filename : options.filename,
directory : options.directory,
quality : options.quality ? options.quality : 100,
photoAlbum : options.photoAlbum ? options.photoAlbum : true
};
return PhoneGap.exec(success, fail, "com.webXells.imageResizer",
"storeImage", [params]);
}
PhoneGap.addConstructor(function() {
//is it iOS
if(device.platform.indexOf("iPhone") != -1) {
if(!window.plugins) {
window.plugins = {};
}
window.plugins.imageResizer = new ImageResizer();
} else {
PhoneGap.addPlugin('imageResizer', new ImageResizer());
}
console.log("Image Resizer Registered under window.plugins.imageResizer");
});
The Android Java:
package com.webXells.ImageResizer;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.os.Environment;
import com.mobileappz.ImageResizer.Base64;
import com.phonegap.api.Plugin;
import com.phonegap.api.PluginResult;
import com.phonegap.api.PluginResult.Status;
public class ImageResizePlugin extends Plugin {
public static String IMAGE_DATA_TYPE_BASE64 = "base64Image";
public static String IMAGE_DATA_TYPE_URL = "urlImage";
public static String RESIZE_TYPE_FACTOR = "factorResize";
public static String RESIZE_TYPE_PIXEL = "pixelResize";
public static String RETURN_BASE64 = "returnBase64";
public static String RETURN_URI = "returnUri";
public static String FORMAT_JPG = "jpg";
public static String FORMAT_PNG = "png";
public static String DEFAULT_FORMAT = "jpg";
public static String DEFAULT_IMAGE_DATA_TYPE = IMAGE_DATA_TYPE_BASE64;
public static String DEFAULT_RESIZE_TYPE = RESIZE_TYPE_FACTOR;
@Override
public PluginResult execute(String action, JSONArray data, String callbackId) {
PluginResult result = null;
JSONObject params;
String imageData;
String imageDataType;
String format;
Bitmap bmp;
try {
//parameters (forst object of the json array)
params = data.getJSONObject(0);
//image data, either base64 or url
imageData = params.getString("data");
//which data type is that, defaults to base64
imageDataType = params.has("imageDataType") ? params
.getString("imageDataType") : DEFAULT_IMAGE_DATA_TYPE;
//which format should be used, defaults to jpg
format = params.has("format") ? params.getString("format")
: DEFAULT_FORMAT;
//create the Bitmap object, needed for all functions
bmp = getBitmap(imageData, imageDataType);
} catch (JSONException e) {
return new PluginResult(Status.JSON_EXCEPTION, e.getMessage());
} catch (IOException e) {
return new PluginResult(Status.ERROR, e.getMessage());
}
//resize the image
if (action.equals("resizeImage")) {
try {
double widthFactor;
double heightFactor;
//compression quality
int quality = params.getInt("quality");
//Pixels or Factor resize
String resizeType = params.getString("resizeType");
//Get width and height parameters
double width = params.getDouble("width");
double height = params.getDouble("height");
if (resizeType.equals(RESIZE_TYPE_PIXEL)) {
widthFactor = width / ((double) bmp.getWidth());
heightFactor = height / ((double) bmp.getHeight());
} else {
widthFactor = width;
heightFactor = height;
}
Bitmap resized = getResizedBitmap(bmp, (float) widthFactor,
(float) heightFactor);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
if (format.equals(FORMAT_PNG)) {
resized.compress(Bitmap.CompressFormat.PNG, quality, baos);
} else {
resized.compress(Bitmap.CompressFormat.JPEG, quality, baos);
}
byte[] b = baos.toByteArray();
String returnString = Base64.encodeBytes(b);
//return object
JSONObject res = new JSONObject();
res.put("imageData", returnString);
res.put("width", resized.getWidth());
res.put("height", resized.getHeight());
result = new PluginResult(Status.OK, res);
} catch (JSONException e) {
result = new PluginResult(Status.JSON_EXCEPTION, e.getMessage());
}
} else if (action.equals("imageSize")) {
try {
JSONObject res = new JSONObject();
res.put("width", bmp.getWidth());
res.put("height", bmp.getHeight());
result = new PluginResult(Status.OK, res);
} catch (JSONException e) {
result = new PluginResult(Status.JSON_EXCEPTION, e.getMessage());
}
} else if (action.equals("storeImage")) {
try {
// Obligatory Parameters, throw JSONException if not found
String filename = params.getString("filename");
filename = (filename.contains(".")) ? filename : filename + "."
+ format;
String directory = params.getString("directory");
directory = directory.startsWith("/") ? directory : "/"
+ directory;
int quality = params.getInt("quality");
OutputStream outStream;
//store the file locally using the external storage directory
File file = new File(Environment.getExternalStorageDirectory()
.toString() + directory, filename);
try {
outStream = new FileOutputStream(file);
if (format.equals(FORMAT_PNG)) {
bmp.compress(Bitmap.CompressFormat.PNG, quality,
outStream);
} else {
bmp.compress(Bitmap.CompressFormat.JPEG, quality,
outStream);
}
outStream.flush();
outStream.close();
JSONObject res = new JSONObject();
res.put("url", "file://" + file.getAbsolutePath());
result = new PluginResult(Status.OK, res);
} catch (IOException e) {
result = new PluginResult(Status.ERROR, e.getMessage());
}
} catch (JSONException e) {
result = new PluginResult(Status.JSON_EXCEPTION, e.getMessage());
}
}
return result;
}
public Bitmap getResizedBitmap(Bitmap bm, float widthFactor,
float heightFactor) {
int width = bm.getWidth();
int height = bm.getHeight();
// create a matrix for the manipulation
Matrix matrix = new Matrix();
// resize the bit map
matrix.postScale(widthFactor, heightFactor);
// recreate the new Bitmap
Bitmap resizedBitmap = Bitmap.createBitmap(bm, 0, 0, width, height,
matrix, false);
return resizedBitmap;
}
private Bitmap getBitmap(String imageData, String imageDataType)
throws IOException {
Bitmap bmp;
if (imageDataType.equals(IMAGE_DATA_TYPE_BASE64)) {
byte[] blob = Base64.decode(imageData);
bmp = BitmapFactory.decodeByteArray(blob, 0, blob.length);
} else {
File imagefile = new File(imageData);
FileInputStream fis = new FileInputStream(imagefile);
bmp = BitmapFactory.decodeStream(fis);
}
return bmp;
}
}
And the iOS .h and .m:
//
// ImageResize.h
#import <Foundation/Foundation.h>
#import <PhoneGap/PGPlugin.h>
@interface ImageResize : PGPlugin {
NSString* callbackID;
}
@property (nonatomic, copy) NSString* callbackID;
//Instance Method
- (void) resizeImage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
- (void) imageSize:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options ;
- (void) storeImage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options ;
- (void) imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)none;
- (UIImage*) getImageUsingOptions:(NSMutableDictionary*)options;
@end
//
// ImageResize.m
#import "ImageResize.h"
#import "UIImage+Scale.h"
#import "NSData+Base64.h"
@implementation ImageResize
@synthesize callbackID;
-(void)resizeImage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
//The first argument in the arguments parameter is the callbackID.
//We use this to send data back to the successCallback or failureCallback
//through PluginResult.
self.callbackID = [arguments pop];
CGFloat width = [[options objectForKey:@"width"] floatValue];
CGFloat height = [[options objectForKey:@"height"] floatValue];
NSInteger quality = [[options objectForKey:@"quality"] integerValue];
NSString *format = [options objectForKey:@"format"] ?: @"jpg";
NSString *resizeType = [options objectForKey:@"resizeType"];
//Load the image
UIImage * img = [self getImageUsingOptions:options];
UIImage *scaledImage = nil;
if([resizeType isEqualToString:@"factorResize"]==YES) {
scaledImage = [img scaleToSize:CGSizeMake(img.size.width * width, img.size.height * height)];
} else {
scaledImage = [img scaleToSize:CGSizeMake(width, height)];
}
NSData* imageDataObject = nil;
if([format isEqualToString:@"png"]==YES) {
imageDataObject = UIImagePNGRepresentation(scaledImage);
} else {
imageDataObject = UIImageJPEGRepresentation(scaledImage, (quality/100));
}
NSString *encodedString = [imageDataObject base64EncodingWithLineLength:0];
NSNumber *newwidth = [[NSNumber alloc] initWithInt:scaledImage.size.width];
NSNumber *newheight = [[NSNumber alloc] initWithInt:scaledImage.size.height];
NSDictionary* result = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:encodedString,newwidth,newheight,nil] forKeys:[NSArray arrayWithObjects: @"imageData", @"width", @"height", nil]];
#ifdef PHONEGAP_FRAMEWORK
PluginResult* pluginResult = [PluginResult resultWithStatus:PGCommandStatus_OK messageAsDictionary:result];
#endif
#ifdef CORDOVA_FRAMEWORK
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:result];
#endif
if(encodedString != nil)
{
//Call the Success Javascript function
[self writeJavascript: [pluginResult toSuccessCallbackString:self.callbackID]];
}else
{
//Call the Failure Javascript function
[self writeJavascript: [pluginResult toErrorCallbackString:self.callbackID]];
}
}
- (UIImage*) getImageUsingOptions:(NSMutableDictionary*)options {
NSString *imageData = [options objectForKey:@"data"];
NSString *imageDataType = [options objectForKey:@"imageDataType"] ?: @"base64Image";
//Load the image
UIImage * img = nil;
if([imageDataType isEqualToString:@"base64Image"]==YES) {
img = [[UIImage alloc] initWithData:[NSData dataWithBase64EncodedString:imageData]];
} else {
img = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageData]]];
}
return img;
}
-(void)imageSize:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options
{
self.callbackID = [arguments pop];
UIImage * img = [self getImageUsingOptions:options];
NSNumber *width = [[NSNumber alloc] initWithInt:img.size.width];
NSNumber *height = [[NSNumber alloc] initWithInt:img.size.height];
NSDictionary* dic = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:width,height,nil] forKeys:[NSArray arrayWithObjects: @"width", @"height", nil]];
#ifdef PHONEGAP_FRAMEWORK
PluginResult* pluginResult = [PluginResult resultWithStatus:PGCommandStatus_OK messageAsDictionary:dic];
#endif
#ifdef CORDOVA_FRAMEWORK
CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:dic];
#endif
[self writeJavascript: [pluginResult toSuccessCallbackString:self.callbackID]];
}
-(void)storeImage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options {
UIImage * img = [self getImageUsingOptions:options];
NSString *format = [options objectForKey:@"format"] ?: @"jpg";
NSString *filename = [options objectForKey:@"filename"] ?: @"jpg";
NSInteger quality = [[options objectForKey:@"quality"] integerValue] ?: 70;
BOOL photoAlbum = [[options objectForKey:@"photoAlbum"] boolValue] ?: YES;
if(photoAlbum==YES) {
UIImageWriteToSavedPhotosAlbum(img, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil);
} else {
NSData* imageData = nil;
if([format isEqualToString:@"jpg"]==YES) {
imageData = UIImageJPEGRepresentation(img, (quality/100));
} else {
imageData = UIImagePNGRepresentation(img);
}
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSMutableString* fullFileName = [NSMutableString stringWithString: documentsDirectory];
[fullFileName appendString:@"/"];
[fullFileName appendString:filename];
NSRange r = [filename rangeOfString:format options:NSCaseInsensitiveSearch];
if(r.location == NSNotFound) {
[fullFileName appendString:@"."];
[fullFileName appendString:format];
}
NSLog(@"%@", fullFileName);
[imageData writeToFile:fullFileName atomically:YES];
}
}
- (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo {
NSString *message;
NSString *title;
if (!error) {
title = NSLocalizedString(@"Image Saved", @"");
message = NSLocalizedString(@"The image was placed in your photo album.", @"");
}
else {
title = NSLocalizedString(@"Error", @"");
message = [error description];
}
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
}
@end