Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to upload image using vue.js and laravel using following code to upload base64 imaage

$image = str_replace('data:image/jpeg;base64,', '', $images);
$image = str_replace('data:image/png;base64,', '', $images);
$image = str_replace(' ', '+', $image);
$imageName = 'img/' . $request->ID . '/' . mt_rand() . '.png';
Storage::disk('public')->put($imageName, base64_decode($image));

but this upload only jpeg image if i upload any other format image it uploads corrupted format. Any help is highly appreciated.

question from:https://stackoverflow.com/questions/66048915/cannot-upload-png-base-64-image-using-vue-js-and-laravel

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...