圖片轉換爲base64,通過post傳輸後‘+’會變成 ‘空格’, 須要用PHP 處理一下 post
$str= $_POST['img_data']; $str= str_replace(' ','+',$str); file_put_contents('./test.png',base64_decode($str));