Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $img = imagecreatefrompng('http://i.imgur.com/iTgGpao.png');
  2.  
  3. imagealphablending($img, true);
  4. imagesavealpha($img, true);
  5. $white = imagecolorexact($img, 255, 255, 255);
  6. imagecolortransparent($img, $white);
  7.  
  8. imagepng($img, 'result.png');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement