PHP nasıl bir görüntü olarak png bir base64 kodlu png ve çıktısını alır?

2 Cevap php

Possible Duplicate:
get image from base64 string

Denedim

header('Content-Type: image/png');
echo base64_decode($data);`

Ama çalışmıyor.

2 Cevap

Yardım etmeye çalıştığınız için herkese teşekkür ederim. Sorun ben PHP komut dosyası gönderdi önce kodlamak sorgu parametresi url unuttum oldu.

Bir png veri url bu gibi görünüyor:

data:image/png;base64,[actual data]

You have to cut the beginning to be able to base64_decode it.
Also, if you remove the header call, you will be able to see any error message your code outputs.