首页 > 资讯列表 >  本页面生成图片压缩专题报道,图片压缩滚动新闻,图片压缩业界评论等相关报道!
  • PHP 文章中的远程图片采集到本地的代码

    PHP 文章中的远程图片采集到本地的代码

    本文为大家讲解了php如何把文章内容中的远程图片采集下载到本地的方法,感兴趣的同学参考下. 第一步...

    PHP 2014-12-10 02:42:03
  • PHP 获取目录下的图片并随机显示的代码

    PHP 获取目录下的图片并随机显示的代码

    本文是一个PHP实现的可以随机获取目录下的某个图片并显示的代码,感兴趣的同学参考下。 从一个目录里获取某类型文件的清单(用在WEB的话一般是jpg/gif/png)->通过随机函数选一个图片->输出代码...

    PHP 2014-12-10 00:51:08
  • PHP 源代码压缩小工具

    PHP 源代码压缩小工具

    本文是一个php实现的可以用来对php代码进行压缩的类,感兴趣的同学参考下。 功能 所有的PHP文件包在一个PHP文件移除所有的注释移除多余空格保持输出纯PHP(即不需要任何额外的处理步骤来解析这个文件) 使用方法:(在命令行运行) php compactor.php DESTINATION.php SOURCE.php   #!/usr/bin/env php <?php /** * Compact PHP code. * * Strip comments, combine entire library into one file. */ if ($argc < 3) { print "Strip unecessary data from PHP source files.nntUsage: php compactor.php DESTINATION.php SOURCE.php"; exit; } $source = $argv[2]; $target = $argv[...

    PHP 2014-12-09 17:36:20
  • php 下载css文件中的图片的代码

    php 下载css文件中的图片的代码

    本文是一个php实现的可以用来下载css中的图片代码(background中的),感兴趣的同学参考下。 作为一个资深并且专业的扒皮人员,在我从初三开始投入伟大的互联网中到现在积累了丰富的扒皮经验...

    PHP 2014-12-09 16:27:07
  • php5 图片验证码实现代码

    php5 图片验证码实现代码

    本文是一个php5 实现的图片验证码,需要的朋友可以参考下。 GD库的函数 1,imagecreatetruecolor -----创建一个真彩色的图像 imagecreatetruecolor(int x_size,int y_size) //x表示宽,y表示高 2,imagecolorallocate 为一幅图像分配颜色(调色板) imagecolorallocate(resource image,int red,int green,int blue)//red,green,blue----三原色 3,imagestring 绘图函数 iamgestring(resource image,font,int x,int y,内容,颜色); 4,输出函数 php的header是定义头的动作,php5中支持3中类型: 1,Content-type:xxxx/yyyy 2,Location:xxxx:yyyy/zzzz 3,Status:nnn xxxxxx xxxx/yyyy表示内容文件的类型 如:image/gif image/jpeg image/pn...

    PHP 2014-12-09 15:15:06
  • php 生成随机验证码图片代码

    php 生成随机验证码图片代码

    本文 是一个php实现的生成验证码图片类,感兴趣的同学参考下。 <?php /** 默认首页 **/ class DefaultController extends AppController { public function index() { $len = 5; $str = "ABCDEFGHIJKLNMPQRSTUVWXYZ123456789"; $im = imagecreatetruecolor ( 70, 20 ); $bgc = imagecolorallocate($im, 255, 255, 255); $bgtxt = imagecolorallocate($im, 220, 220, 220); //随机调色板 $colors = array( imagecolorallocate($im, 255, 0, 0), imagecolorallocate($im, 0, 200, 0), imagecolorallocate($im, 0, 0, 255), imagecoloralloc...

    PHP 2014-12-09 11:00:04
  • PHP 处理图片类

    PHP 处理图片类

    本文是一个PHP 处理图片的类实现代码,实现的图片打水印,裁剪图片等,需要的朋友可以参考下。 <?php /** * author:yagas */ class Image { /** 类保护变量 */ protected $th_width = 100; protected $th_height = 50; protected $quality = 85; //图片质量 protected $transparent = 50; //水印透明度 protected $background = "255,255,255"; //背景颜色 /** * 生成缩略图文件 * @param $src 原图文件 * @param $dst 目标文件 */ public function thumb($src, $dst=null, $output=true) { $thumb = array($this->th_width, $this->th_height); $this->scale($src, $t...

    PHP 2014-12-09 08:45:04
  • php获取网页中的图片并保存到本地的代码

    php获取网页中的图片并保存到本地的代码

    本文是一个php实现的抓取 远程网页,并把其中的图片下载保存到本地的代码,感兴趣的同学参考下。 <?php header("Content-type:image/jpeg"); function read_url($str) { $file=fopen($str,"r"); while(!feof($file)) { $result.=fgets($file,9999); } fclose($file); return $result; } function save_img($str) { $result=read_url($str); $result=str_replace(""","",$result); $result=str_replace("'","",$result); preg_match_all('/<imgssrc=(http://.*?)(s(.*?)&...

    PHP 2014-12-09 06:27:03
  • PHP 压缩文件夹的类代码

    PHP 压缩文件夹的类代码

    本文是一个PHP实现的可以用来 压缩文件夹的类代码示例,需要的朋友可以参考下。 <?php /* $Id: PHPZip.php */ class PHPZip { var $datasec = array(); var $ctrl_dir = array(); var $eof_ctrl_dir = "x50x4bx05x06x00x00x00x00"; var $old_offset = 0; function Zip($dir, $zipfilename) { if (@function_exists('gzcompress')) { @set_time_limit("0"); $this->openFile($dir,$dir); $out = $this -> filezip(); $fp = fopen($zipfilename, "w"); fwrite($fp, $out, strlen($out)); fclose($fp); } ...

    PHP 2014-12-09 04:57:04
  • php 显示指定路径下的图片

    php 显示指定路径下的图片

    本文为大家提供的是一个php实现的可以用来显示指定路经下的图片示例代码:给一个路径,得到她下面的图片,并显示出来的php代码。感兴趣的同学参考下. function getAllDirAndFile($path) { if(is_file($path)) { if(isImage($path)) { $str=""; $str.='<table style="border:solid 1px blue;" width="95%">'; $str.="<tr>"; $path=iconv("gb2312","utf-8",$path); $str.="<td width=80%>".$path."</td><td width=15%><img src=".$path." style='width:50p...

    PHP 2014-12-09 04:48:04
  • php实现给图片加灰色半透明效果的方法

    php实现给图片加灰色半透明效果的方法

    本文是一个php实现的可以给图片加灰色半透明效果的方法,涉及对图像的操作,是非常实用的技巧,需要的朋友可以参考下 原理: 1.首先计算出原图片的尺寸 2.创建相同尺寸的半透明图片 3.使用 imagecopy()方法,把新创建的半透明图片与原图合并 具体实现代码如下: <?php /*php 给图片加灰色透明效果*/ $imfile = './0.jpg';//原图 $origim = imagecreatefromjpeg($imfile);//从 JPEG 文件或 URL 新建一图像   $w=imagesx($origim);//原图宽度 $h=imagesy($origim);//原图高度   $newimg = imagecreatetruecolor($w, $h);//返回一个图像标识符,代表了一幅大小为    x_size 和 y_size 的黑色图像。imagecreatetruecolor//     ...

    PHP 2014-12-09 02:54:04
  • 免费开源解压缩工具7-Zip v9.35 Beta发布下载

    免费开源解压缩工具7-Zip v9.35 Beta发布下载

    站长搜索(www.adminso.com):免费开源解压缩工具7-Zip v9.35 Beta发布下载 站长搜索讯,著名的免费开源压缩/解压缩工具7-Zip发布了v9.35 Beta版,此版本现已提供下载。可能很多朋友没有用过7-Zip,所以不禁要问:7-Zip和其他压缩软件比起来好用吗?7-Zip最大的特点是什么?7-Zip特点:使用了 LZMA 与 LZMA2 算法的7z格式,拥有极高的压缩比...

    业界动态 2014-12-08 22:48:05

站长搜索

http://www.adminso.com

Copyright @ 2007~2025 All Rights Reserved.

Powered By 站长搜索

打开手机扫描上面的二维码打开手机版


使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

站长搜索目录系统技术支持