Canvas2ImagePlugin icon indicating copy to clipboard operation
Canvas2ImagePlugin copied to clipboard

PhoneGap / Cordova plugin for iOS to save the contents of an HTML canvas to the device's Photo Library

Results 45 Canvas2ImagePlugin issues
Sort by recently updated
recently updated
newest added

Is there any support for Ionic2 with typescript ?

i tries to save the Image created in canvas, but it gives me error as : Error: Failed to execute 'toDataURL' on 'HTMLCanvasElement' mycode is as follows : ``` var...

Have anyone implemented this, or know how it could be done? really looking for this feature! Any help or input is highly appreciated, thanks

Perhaps a configuration option to choose to either save the image to the gallery/camera roll (as it does currently) **or** to save it to the app's filesystem and return the...

enhancement
1 - Ready

Hi, I needed jpeg support so I changed this line, maybe make this available as a setting? //var imageData = canvas.toDataURL().replace(/data:image\/png;base64,/,''); var imageData = canvas.toDataURL("image/jpeg", 1.0).replace(/data:image\/jpeg;base64,/,'');

enhancement
1 - Ready

To resolve #59 millisecond is added to date string.

Hi, I am using phonegap to build cross-platform version of my app, I tried to test Canvas2ImagePlugin but I am not getting any result. I test it using Android Studio...

When I save a picture on android this make a new folder on gallery named "Pictures", it is possible to change the folder name?

Hi, I have attempted to use this plugin both in Chrome (desktop) and also on my android phone (4.4.2), and I am receiving the same error when attempting to save...

I have a simple call to window.canvas2ImagePlugin.saveImageDataToLibrary as seen below: ``` window.canvas2ImagePlugin.saveImageDataToLibrary( function (msg) { $scope.ShareThisPicture(msg); }, function (err) { $scope.SimpleAlert("Error", err); }, document.getElementById('myCanvas') ); ``` However, when I call...