devgeeks/Canvas2ImagePlugin

Class Not Found

mario-aleo opened this issue · 3 comments

I've been trying to use Canvas2Plugin and i finally got cordova.exec working with it, but, when it's called on android, it throws an error: Class Not Found.

The code is:

  var SaveImage = function(element, success, error){
      var canvas = document.getElementById(element);
      var imageDataUrl = canvas.toDataURL('image/jpeg', 1.0);
      var imageData = imageDataUrl.replace(/data:image\/png;base64,/,'');
      cordova.exec(success, error, 'Canvas2ImagePlugin', 'saveImageDataToLibrary', [imageData]);
      $scope.return = 'Saved';
  };

  var success = function(msg){
      $scope.return = msg;  
  };

  var error = function(err){
      $scope.return = err;
  };

  $scope.save = function(){
      SaveImage('pwCanvasMain', success, error);
  };

As you may see, I'm using angular.js.
Does anyone know whats is this error?
On IOS it isn't saving.

Thanks.

I had the same issue. The likelihood is you didn't compile the application after adding the plugin and just allowed the application to update with livereload.

Recompiling the app should work.

Right, I'll give it a try.
Thanks.

Hi,have you solved this problem ? I also have the same problem.@mario-aleo