首页 > 资讯列表 >  本页面生成保存网页为图片专题报道,保存网页为图片滚动新闻,保存网页为图片业界评论等相关报道!
  • 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
  • 网页操作或将取代应用 成内容主要载体

    网页操作或将取代应用 成内容主要载体

          近日,美国研究机构皮尤研究中心发布调查报告称,百分之六十的技术专家认为,相对于应用,网页将成为2012年时的电脑上主要的内容呈现方式。  使用应用和操作网页,你更习惯于哪个?     皮尤在2011年8月底至10月对1021名技术相关人员和评论家进行了调查...

    系统程序 2014-12-09 05:51:05
  • 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实现的可以把数组转换为字符串字写入到文件中的代码示例,感兴趣的同学参考下。 我们通常把一些常用的数据保存为数组格式方便调用,同时这也是缓存的重要方法...

    PHP 2014-12-09 04:21:03
  • 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
  • 用php或asp创建网页桌面快捷方式的代码

    用php或asp创建网页桌面快捷方式的代码

    本文为大家讲解的是php实现的创建网页快捷方式的示例代码,感兴趣的同学参考下。 上传到网站,shortcut.php 就会有提示下载一个名为 张楚网站.urll文件,保存在本地就是一个快捷方式! 新建一个PHP文档:名字好记就行如:shortcut.php PHP文档中的内容: <?php $Shortcut = "[InternetShortcut] URL=http://www.phperz.com/ IDList= [{000214A0-0000-0000-C000-000000000046}] Prop3=19,2 "; Header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=phperz.url;"); echo $Shortcut; ?> 要想出现图标请先确保网站根目录中有 favicon.ico 文件 上传到...

    PHP 2014-12-09 02:03:07
  • PHP 将图片按创建时间进行分类存储的代码

    PHP 将图片按创建时间进行分类存储的代码

    本文是一个php实现的可以把图片安创建时间进行分类存储的示例代码,感兴趣的同学参考下。 代码功能: 使用PHP巧妙将图片按创建时间进行分类存储 图片文件属性须取消只读属性,否则无法删除 <?php /* 代码功能:使用PHP巧妙将图片按创建时间进行分类存储; 图片文件属性须取消只读属性,否则无法删除 By lost63 */ //延时设置 set_time_limit(0); $path='C:恢复文件图形$图片JPEG 图像 (.jpg)'; $result=dir($path); while($value=$result->read()){ if(strpos($value,'.JPG')==true||strpos($value,'.jpg')==true||strpos($value,'.gif')==true||strpos($value,'.png')==true){ //如果文件夹不存在则建立; $fileNewPath=$path....

    PHP 2014-12-08 16:24:06
  • PHP生成3D扇形统计图以及对图片进行缩放方法

    PHP生成3D扇形统计图以及对图片进行缩放方法

    本文是一个PHP实现的可以生成3D扇形统计图以及对图片进行缩放的操作实例代码,需要的朋友可以参考下 1、利用php gd库的函数绘制3D扇形统计图 <?php header("content-type","text/html;charset=utf-8"); /*扇形统计图*/ $image = imagecreatetruecolor(100, 100);    /*创建画布*/ /*设置画布需要的颜色*/ $white = imagecolorallocate($image,0xff,0xff,0xff); $gray = imagecolorallocate($image, 0xc0, 0xc0, 0xc0); $darkgray = imagecolorallocate($image, 0x90, 0x90, 0x90); $navy = imagecolorallocate($image, 0x00, 0x00, 0x80); $darknavy = imagecol...

    PHP 2014-12-08 09:21:07

站长搜索

http://www.adminso.com

Copyright @ 2007~2024 All Rights Reserved.

Powered By 站长搜索

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


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

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

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