im.php 311 B

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