“PHP Base64 codiertes Bild zu PNG” Code-Antworten

PHP -Bild zu Base64

$path = 'myfolder/myimage.png';
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
portapipe

PHP Base64 codiertes Bild zu PNG

$img = $_POST['img'];
$img = str_replace('data:image/png;base64,', '', $img);
$img = str_replace(' ', '+', $img);
$data = base64_decode($img);
$file = "images/" . uniqid() . '.png';
$success = file_put_contents($file, $data);
Friendly Hawk

Ähnliche Antworten wie “PHP Base64 codiertes Bild zu PNG”

Fragen ähnlich wie “PHP Base64 codiertes Bild zu PNG”

Weitere verwandte Antworten zu “PHP Base64 codiertes Bild zu PNG” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen