科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件PHP用流方式制作缩略图

PHP用流方式制作缩略图

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文介绍PHP用流方式制作缩略图的代码。其中db_mysql.inc.php,config.php,function.php不是真正使用到的,关键是$filename 文件名,是通过读取数据库中的图片名称……

作者:51CTO.com整理 来源:51CTO.com整理 2007年9月14日

关键字: PHP 缩略图

  • 评论
  • 分享微博
  • 分享邮件

在本页阅读全文(共19页)

其中db_mysql.inc.php,config.php,function.php不是真正使用到的,关键是$filename 文件名,我是通过读取数据库中的图片名称。

<?php

include_once ('inc/db_mysql.inc.php');

include_once ('inc/config.php');

include_once ('class/function.php');

global $picPath;

if (strstr($_SERVER[HTTP_USER_AGENT],"MSIE")) {

$attachment = '';

} else {

$attachment = ' atachment;';

}

$image = getInfo('newssp_gallery','id',$_GET['id']);

$filename = $picPath.$image['filename'];

if (!file_exists($filename)) {

$filename = $picPath."notexist.gif";

}

header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1

header("Cache-Control: post-check=0, pre-check=0", false);

header("Pragma: no-cache");// HTTP/1.0

header("Content-disposition:".$attachment." filename=".$image['original']);

$size = @filesize($filename);

header("Content-Length: $size");

$fd = @fopen($filename,rb);

$contents = @fread($fd,$size);

@fclose ($fd);

echo $contents;

?>

使用的时候可以把在html文件里加上:<img src='showpic.php?id=xxx' width='50' height='50'>

showpic.php及上面的那个php文件,id=xxx是数据库里的记录ID,width是缩略图的宽,height是缩略图的高,请不要同时宽高都上,例如,你要实现宽为50的缩略图,只要<img src='showpic.php?id=xxx' width='50'>这样就可以了。

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章