Advertisement
MyZik

Untitled

May 27th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Фильтр</title>
  6. </head>
  7.  
  8. <body>
  9.   <script src="script.js"></script>
  10. <script>
  11.     var dataURL = canvas.toDataURL();
  12.  
  13.     $.ajax({
  14.         type: "POST",
  15.         url: "upload.php",
  16.         data: {
  17.             imgBase64: dataURL
  18.         }
  19.     }).done(function(o) {
  20.         console.log('saved');
  21.         // If you want the file to be visible in the browser
  22.         // - please modify the callback in javascript. All you
  23.         // need is to return the url to the file, you just saved
  24.         // and than put the image in your browser.
  25.     });
  26. </script>
  27. </body>
  28. </html>
  29. <!-- ff00d8 -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement