Skip to content

Instantly share code, notes, and snippets.

@geovanerocha
Created September 25, 2012 15:51
Show Gist options
  • Save geovanerocha/3782710 to your computer and use it in GitHub Desktop.
Save geovanerocha/3782710 to your computer and use it in GitHub Desktop.
Writing something inside the image's code @ PHP.
$arquivo = file_get_contents('imagem.png');
/*
@ função file_put_contents para inserir conteúdo no arquivo,
@ re-inseri o conteúdo da variável $arquivo para não perder informação e
@ adicionei uma string " TEXTO" ao final do código da imagem
*/
file_put_contents('imagem.png', $arquivo . ' TEXTO');
print($arquivo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment