<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[张宴的博客]]></title> 
<link>http://zyan.cc/index.php</link> 
<description><![CDATA[Web系统架构与底层研发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[张宴的博客]]></copyright>
<item>
<link>http://zyan.cc/post/47/</link>
<title><![CDATA[用GD库生成高质量的缩略图片[转载]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[PHP/JS/Shell]]></category>
<pubDate>Sat, 16 Jul 2005 06:44:21 +0000</pubDate> 
<guid>http://zyan.cc/post/47/</guid> 
<description>
<![CDATA[ 
	<textarea name="code" class="php" rows="15" cols="100">
<?

$FILENAME="image_name";

// 生成图片的宽度
$RESIZEWIDTH=400;

// 生成图片的高度
$RESIZEHEIGHT=400;


function ResizeImage($im,$maxwidth,$maxheight,$name)&#123;
 &nbsp; &nbsp;$width = imagesx($im);
 &nbsp; &nbsp;$height = imagesy($im);
 &nbsp; &nbsp;if(($maxwidth && $width > $maxwidth) &#124;&#124; ($maxheight && $height > $maxheight))&#123;
 &nbsp; &nbsp; &nbsp; &nbsp;if($maxwidth && $width > $maxwidth)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$widthratio = $maxwidth/$width;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$RESIZEWIDTH=true;
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;
 &nbsp; &nbsp; &nbsp; &nbsp;if($maxheight && $height > $maxheight)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$heightratio = $maxheight/$height;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$RESIZEHEIGHT=true;
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;
 &nbsp; &nbsp; &nbsp; &nbsp;if($RESIZEWIDTH && $RESIZEHEIGHT)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if($widthratio < $heightratio)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$ratio = $widthratio;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#125;else&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$ratio = $heightratio;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#125;
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;elseif($RESIZEWIDTH)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$ratio = $widthratio;
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;elseif($RESIZEHEIGHT)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$ratio = $heightratio;
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;
 &nbsp; &nbsp; &nbsp; &nbsp;$newwidth = $width * $ratio;
 &nbsp; &nbsp; &nbsp; &nbsp;$newheight = $height * $ratio;
 &nbsp; &nbsp; &nbsp; &nbsp;if(function_exists("imagecopyresampled"))&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$newim = imagecreatetruecolor($newwidth, $newheight);
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;else&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;$newim = imagecreate($newwidth, $newheight);
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;
 &nbsp; &nbsp; &nbsp; &nbsp;ImageJpeg ($newim,$name . ".jpg");
 &nbsp; &nbsp; &nbsp; &nbsp;ImageDestroy ($newim);
 &nbsp; &nbsp;&#125;else&#123;
 &nbsp; &nbsp; &nbsp; &nbsp;ImageJpeg ($im,$name . ".jpg");
 &nbsp; &nbsp;&#125;
&#125;


if($_FILES['image']['size'])&#123;
 &nbsp; &nbsp;if($_FILES['image']['type'] == "image/pjpeg")&#123;
 &nbsp; &nbsp; &nbsp; &nbsp;$im = imagecreatefromjpeg($_FILES['image']['tmp_name']);
 &nbsp; &nbsp;&#125;elseif($_FILES['image']['type'] == "image/x-png")&#123;
 &nbsp; &nbsp; &nbsp; &nbsp;$im = imagecreatefrompng($_FILES['image']['tmp_name']);
 &nbsp; &nbsp;&#125;elseif($_FILES['image']['type'] == "image/gif")&#123;
 &nbsp; &nbsp; &nbsp; &nbsp;$im = imagecreatefromgif($_FILES['image']['tmp_name']);
 &nbsp; &nbsp;&#125;
 &nbsp; &nbsp;if($im)&#123;
 &nbsp; &nbsp; &nbsp; &nbsp;if(file_exists("$FILENAME.jpg"))&#123;
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;unlink("$FILENAME.jpg");
 &nbsp; &nbsp; &nbsp; &nbsp;&#125;
 &nbsp; &nbsp; &nbsp; &nbsp;ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$FILENAME);
 &nbsp; &nbsp; &nbsp; &nbsp;ImageDestroy ($im);
 &nbsp; &nbsp;&#125;
&#125;

?>

<img src="<? echo($FILENAME.".jpg?reload=".rand(0,999999)); ?>"><br/><br/>

<form enctype="multipart/form-data" method="post">
<br/>
<input type="file" name="image" size="50" value="浏览"><p>
<input type="submit" value="上传图片">
</form> 

</body>
</html>
</textarea><br/>Tags - <a href="http://zyan.cc/tags/php/" rel="tag">php</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment14264</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>louis vuitton uk &lt;fsf@fdg.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 23 Nov 2011 01:14:17 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment14264</guid> 
<description>
<![CDATA[ 
	This <a href="http://www.louisvuittonoutlets.org.uk" target="_blank">louis vuitton uk</a> for sale belongs to the sounding just what are termed as Louis Vuitton vintage best sellers, many other products and services for the reason that range appearing companies.You will easily notice the unfold zippers of this <a href="http://www.coachoutletstoreonlinefree.com" target="_blank">coach outlet store online</a>. That is the decoration. There are some inside pockets for you as well. They are easy to match your clothes and to carry.Let us inspire your inner beauty with fine <a href="http://www.christian-louboutinsale.org.uk" target="_blank">christian louboutin sale</a>. Purse the elegance in bridal wedding. Enjoy the fashion.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment17485</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>meimei &lt;xiangxiangxiang123@yahoo.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 16 Apr 2012 00:54:46 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment17485</guid> 
<description>
<![CDATA[ 
	<a href="http://www.christianlouboutinukuk.org" target="_blank">christian louboutin</a><br/><a href="http://www.tiffanyuksuk.org" target="_blank">tiffanys</a><br/><a href="http://www.gucciukbeltuk.org" target="_blank">gucci uk</a><br/><a href="http://www.frsaclouisvuittonsac.com" target="_blank">louis vuitton sac</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment17502</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>meimei &lt;xiangxiangxiang123@yahoo.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 16 Apr 2012 01:01:11 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment17502</guid> 
<description>
<![CDATA[ 
	<a href="http://www.chanelukoutlets.org.uk" target="_blank">chanel uk</a><br/><a href="http://www.burberryukoutletuk.org" target="_blank">burberry uk</a><br/><a href="http://www.poloralphlaurenuks.org" target="_blank">ralph lauren uk</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment22037</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Buy Polo &lt;daleayek@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 22 Jun 2012 08:51:52 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment22037</guid> 
<description>
<![CDATA[ 
	may well could get that over-all erroneous point to weigh regarding drenched shaving
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment22751</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Jimmy Choo Shoes &lt;bethatuu@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 10 Aug 2012 04:00:39 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment22751</guid> 
<description>
<![CDATA[ 
	Carmen identified a means to go by forging her mother&#039;s signature of acceptance <a href="http://www.coachoutlete0.com" target="_blank"><strong>Coach Outlet</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment23996</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>baozang &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 22 Sep 2012 05:25:50 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment23996</guid> 
<description>
<![CDATA[ 
	Lamo - Like Sebago, <a href="http://www.louisvuittoncanadalv.ca/" target="_blank">Louis Vuitton Canada</a>&nbsp;&nbsp;there are only about 40 styles of Lamo Footwear. Most of their footwear uses a suede leather traditional in <a href="http://www.truereligionbrandjeans11.com/" target="_blank">True Religion Jeans</a>&nbsp;&nbsp;moccasins, though only about 1/3 of the footwear collection is a traditional moccasin look. <a href="http://www.truereligionbrandjeans11.com/" target="_blank">True Religion Brand Jeans</a> The rest of the collection is slippers and UGG styled boots.Louis Vuitton Artsy The traditional moccasins do have a soft rubber sole making them great deck <a href="http://www.truereligionbrandjeans11.com/" target="_blank">True Religion Sale</a> shoes as well, however. Expect to pay between $50 and $60 for Lamo moccasins.&nbsp;&nbsp;Invicta watches have been here since 1837. They were made by Raphael Picard. Invicta watches got its name from a Latin word. The meaning of Invicta in Louis Vuitton Monogram Vernis Alma BB Amarante Latin is &quot;Invincible&quot;. Earlier these watches were not so popular but recently with its new men&#039;s collection this watch brand has gained a lot of popularity. Watches for many are a style statement and so they prefer to own the best piece. Invicta watches are popular as they are like a style statement.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment24269</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Martin Short &lt;felixdszz@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 01 Oct 2012 09:00:16 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment24269</guid> 
<description>
<![CDATA[ 
	<a href="http://www.yostuff.com/article/to-allow-them-to-possess-a-great-and-solid-effect-on-your-potential-target-audiences-/75395/" target="_blank"><strong>if you get a new candy and select and now we don&#039;</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment24317</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Garry Driggers &lt;danawwba@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 03 Oct 2012 18:49:38 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment24317</guid> 
<description>
<![CDATA[ 
	<a href="http://d1076353.domain.com/adv_good.php?cat=sale&amp;id=3535&amp;PHPSESSID=8b03db1587abd76d9a4ea3a4decfdc71" target="_blank"><strong>Located at Boston celtics Pbx telephony you benefi</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment24389</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Burberry Outlet &lt;herdbpa@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 09 Oct 2012 09:05:39 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment24389</guid> 
<description>
<![CDATA[ 
	Earlier mentioned black chanel bags vibrant white Kitson tote brand name letter <a href="http://www.michaelkorsoutletvipshop9.com" target="_blank"><strong>Michael Kors Outlet</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment24422</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Cheap Jordans &lt;leifbuu@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 10 Oct 2012 22:14:37 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment24422</guid> 
<description>
<![CDATA[ 
	which Registrar will transfer the domain identify to Plaintiffs <a href="http://www.ugg-boots-outlet59.com" target="_blank"><strong>Ugg Boots</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment24850</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Coach Outlet Online &lt;herdbpa@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 29 Oct 2012 16:40:14 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment24850</guid> 
<description>
<![CDATA[ 
	<a href="http://www.9iwap.com/blogs/entry/from-the-midst-of-not-newborn-haughty-Ralph-Lauren-equestrian-sort" target="_blank"><strong>By using shopping online</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment25162</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Gucci Outlet &lt;selfhyfg@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 04 Nov 2012 01:32:36 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment25162</guid> 
<description>
<![CDATA[ 
	<a href="http://www.lagbook.com/blogs/item/ugg-salebr-with-five-march-06" target="_blank"><strong>Coach Outlet Online Ugg boot Bailey Link 5803 bota</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment25253</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Ugg Boots On Sale &lt;chowaaab@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 06 Nov 2012 14:59:14 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment25253</guid> 
<description>
<![CDATA[ 
	******<a href="http://home.ego2.cn/space.php?uid=27923&amp;do=blog&amp;id=136693" target="_blank"><strong>Ugg Clearance True uggs -worth the money</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment25364</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Ugg Boots On Sale &lt;selfhyfg@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 09 Nov 2012 07:54:08 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment25364</guid> 
<description>
<![CDATA[ 
	******<a href="http://www.reddit.com/r/gaming/comments/12jsn9/cheap_uggs" target="_blank"><strong>Coach Outlet Store Online It really is bad</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/47/#blogcomment25502</link>
<title><![CDATA[[评论] 用GD库生成高质量的缩略图片[转载]]]></title> 
<author>Ugg Outlet &lt;loriencgh@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 11 Nov 2012 23:36:40 +0000</pubDate> 
<guid>http://zyan.cc/post/47/#blogcomment25502</guid> 
<description>
<![CDATA[ 
	<a href="http://videosharegroup.com/read_blog/283492/coach-outlet-your-solution-will-undoubtedly-be-ver" target="_blank"><strong>Gucci Outlet Online Satchels together with Shoulde</strong></a>
]]>
</description>
</item>
</channel>
</rss>