im.php 300 B

12345678910
  1. <?php
  2. $im = imagecreatefromgif('zip://' . dirname(__FILE__) . '/test_im.zip#pear_item.gif');
  3. imagepng($im, 'a.png');
  4. $z = new ZipArchive();
  5. $z->open(dirname(__FILE__) . '/test_im.zip');
  6. $im_string = $z->getFromName("pear_item.gif");
  7. $im = imagecreatefromstring($im_string);
  8. imagepng($im, 'b.png');