Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function base64_to_jpeg( $base64_string, $output_file ) {
  2. $ifp = fopen( $output_file, "wb" );
  3. fwrite( $ifp, base64_decode( $base64_string) );
  4. fclose( $ifp );
  5. return( $output_file );
  6. }
  7.  
  8. $image = base64_to_jpeg( $my_base64_string, 'tmp.jpg' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement