张映 发表于 2010-04-19

分类目录: php

为什么要缩放和截图呢?最重要一点,就是加载的速度,如果我想要显示一个30x30的图片,但是你上传的图片是300x300,页面加载图片的时候,肯定30x30的要快。所以我们就要截取或者缩放,现在sns的网站都提供,头像的截取。

一,准备test.html页面

<html>
<body>
<form action='test.php' method='post' name='form' enctype="multipart/form-data">
<input type='file' name='photo'>
<input type=submit value='submit'>
</form>
</body>
</html>

阅读全文>>

张映 发表于 2010-02-20

分类目录: php

一,生成图片时遇到问题

用gd库成生图片时,提示我缺少字体,如下图:

TTF字体缺少

TTF字体缺少

二,解决方法

阅读全文>>