Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Class Not Found #56

Open
mario-aleo opened this issue Sep 21, 2015 · 3 comments
Open

Class Not Found #56

mario-aleo opened this issue Sep 21, 2015 · 3 comments

Comments

@mario-aleo
Copy link

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.

@archy-bold
Copy link

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.

@mario-aleo
Copy link
Author

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

@mttm-xyz
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants