Canvas2ImagePlugin icon indicating copy to clipboard operation
Canvas2ImagePlugin copied to clipboard

Class Not Found

Open mario-aleo opened this issue 9 years ago • 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.

mario-aleo avatar Sep 21 '15 16:09 mario-aleo

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.

archy-bold avatar Nov 05 '15 14:11 archy-bold

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

mario-aleo avatar Nov 05 '15 16:11 mario-aleo

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

mttm-xyz avatar Oct 23 '19 05:10 mttm-xyz