how to download canvas image into database

Solutions on MaxInterview for how to download canvas image into database by the best coders in the world

showing results for - "how to download canvas image into database"
Fabian
08 May 2020
1//ajax;;;;;;;;;;
2save.click((e)=>{
3    var data = canvas.toDataURL('image/png');
4    $.post('save.php',{'img':data},function(e){
5        console.log(e);
6    })
7})
8//php
9<?php
10$data = $_POST['img'];
11$file = "data/file.png"; // where you want to upload, file path;;;;;
12$uri = substr($data,strpos($data, ",") + 1);
13file_put_contents($file, base64_decode($uri));
14echo $file;
15?>