Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

cannot upload png base 64 image using vue.js and laravel

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...