All,
I am executing a PHP script through CURL which returns a PNG file as an output. How can I show the png file in a php web page?
|
|
|
First of all, why do you need to fetch a PNG through CURL? There's better ways to get a image from server, for example using the Anyways, I assume you are getting the binary data in a variable, you can output the image by setting appropriate headers and echoing the data:
|
|||||||||
|
|
as you are receiving the string representing the png and if that is base64 encoded then you can embed directly on the image tag as follows:
where aAbBcCdDeEfFgGhH... would be the image string. see more on data uri's here: http://en.wikipedia.org/wiki/Data_URI_scheme#Inclusion_in_HTML_or_CSS_using_PHP |
|||
|
|