Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $fcontents = file_get_contents($imgname);
  2. $im = @imagecreatefromstring($fcontents);
  3.  
  4. $loader = new ElphinIcoFileLoaderIcoFileService;
  5. $im = $loader->extractIcon('/path/to/icon.ico', 32, 32);
  6.  
  7. //$im is a GD image resource, so we could, for example, save this as a PNG
  8. imagepng($im, '/path/to/output.png');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement