summaryrefslogtreecommitdiff
path: root/ext/zip/examples/im.php
blob: b664e91c2ba40cde3d66a539e8310cbb47be68c3 (plain)
1
2
3
4
5
6
7
8
9
10
<?php
/* $Id$ */
$im = imagecreatefromgif('zip://' . dirname(__FILE__) . '/test_im.zip#pear_item.gif');
imagepng($im, 'a.png');

$z = new ZipArchive();
$z->open(dirname(__FILE__) . '/test_im.zip');
$im_string = $z->getFromName("pear_item.gif");
$im = imagecreatefromstring($im_string);
imagepng($im, 'b.png');