update page now

Voting

: three plus two?
(Example: nine)

The Note You're Voting On

Messerli at messerli dot net
2 years ago
// Send the Image as Base64 Data directly to the browser.
// No File on the Server! No Hacker Problem. 

  ob_start();
  imagepng($img);
  $ImageData=ob_get_contents();
  ob_end_clean();
  echo '<img src="data:image/jpg;base64,'.base64_encode($ImageData).'">';

<< Back to user notes page

To Top