Skip to content

Instantly share code, notes, and snippets.

@dkesberg
Last active May 31, 2017 19:47
Show Gist options
  • Save dkesberg/2828e921f4e7c3ee380e to your computer and use it in GitHub Desktop.
Save dkesberg/2828e921f4e7c3ee380e to your computer and use it in GitHub Desktop.
Transparent 1x1 image (png, gif)
/**
* source: http://stackoverflow.com/questions/3203354/php-script-to-render-a-single-transparent-pixel-png-or-gif
*/
// transparent 1x1 png
header('Content-Type: image/png');
echo base64_decode('iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII=');
// transparent 1x1 gif
header('Content-Type: image/gif');
echo base64_decode('R0lGODlhAQABAJAAAP8AAAAAACH5BAUQAAAALAAAAAABAAEAAAICBAEAOw==');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment