I've been trying for a while to send an image via Postman to a simple PHP script that should display the sent image. The steps I followed were:
Postman "client" side:
In the PHP script I just have:
echo '<img src="data:multipart/form-data,' . $_POST['image_test'] .'"/>';
This solution isn't working for me although with print_r($_POST)
I'm able to see the encoded image. Could this be a problem of the host (https://ide.c9.io) or Postman? I made some other tests with Postman and base64 images and the Display tab of Postman wasn't able to display the decoded images; the only way was to access through the browser.
Some code would help to understand what you are trying to do. You could try to send the image back to the client in base64 encoding. See How to convert an image to base64 encoding? for an example
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With