Advertisement
Guest User

new

a guest
Jul 22nd, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $img = rawurldecode($_POST['image']);
  2. $img = str_replace('data:image/png;base64,', '', $img);
  3. $img = str_replace(' ', '+', $img);
  4. $data = base64_decode($img);
  5. $file = "images/" . $rnd . '.png';
  6. $success = file_put_contents($file, $data);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement