error_reporting(E_ALL);
$width = 80;
新视窗企业管理系统是一款小巧、实用、利于后续开发的ASP程序。适合大中小型企业的网站建设。1、新闻管理 2、产品管理 3、订单管理 4、广告管理 5、下载管理 6、留言管理 8、单页栏目(如企业简介,资质荣誉)9、人才招聘等等。 新视窗企业管理系统 5.1 更新日志:1、修改产品列表的图片自动缩略,防止图片变形.2、修改后台添加产品分类时,排序ID不写入数据库的错误.3、修改首页企业简介的链接地址
1
/*** the image file to thumbnail ***/
$image = 'spork.jpg';
if(!file_exists($image))
{
echo 'No file found';
}
else
{
/*** image info ***/
list($width_orig, $height_orig, $image_type) = getimagesize($image);
/*** check for a supported image type ***/
if($image_type !== 2)
{
echo 'invalid image';
}
else
{
/*** thumb image name ***/
$thumb = 'thumb.jpg';
/*** maintain aspect ratio ***/
$height = (int) (($width / $width_orig) * $height_orig);
/*** resample the image ***/
$image_p = imagecreatetruecolor($width, $height);
$image = imageCreateFromJpeg($image);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
/*** write the file to disc ***/
if(!is_writeable(dirname($thumb)))
{
echo 'unable to write image in ' . dirname($thumb);
}
else
{
imageJpeg($image_p, $thumb, 100);
}
}
}
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号