包含feed的php抓取圖像的詞條

本文目錄一覽:

PHP中如何將一個字符串解析成圖像?以及如何獲得一個圖像的字符串形式?

首先這個代碼的php文件就作為圖片文件.

?php //設文件名為test.php

$data=file_get_contents(“1.jpg”);

$im = imagecreatefromstring($data);

if ($im !== false) {

header(‘Content-Type: image/jpeg’); //對應jpeg的類型

imagejpeg($im);////也要對應jpeg的類型

imagedestroy($im);

}

else {

echo ‘圖片未讀入’;

}

=========

然後再另一個html或php中寫上img src=’test.php’ /顯示該圖片

PHP圖片生成

給你一個php 圖像處理類,完全能實現你的功能,你自己研究一下吧

?php

class image

{

var $w_pct = 50; //透明度

var $w_quality = 80; //質量

var $w_minwidth = 300; //最小寬

var $w_minheight = 300; //最小高

var $thumb_enable; //是否生成縮略圖

var $watermark_enable; //是否生水印

var $interlace = 0; //圖像是否為隔行掃描的

var $fontfile; //字體文件

var $w_img ; //默認水印圖

function __construct()

{

global $SITE_CONFING;

$this-thumb_enable = $SITE_CONFING[‘thumb_enable’];

$this-watermark_enable = $SITE_CONFING[‘watermark_enable’];

$this-set($SITE_CONFING[‘watermark_minwidth’], $SITE_CONFING[‘watermark_minheight’], $SITE_CONFING[‘watermark_quality’], $SITE_CONFING[‘watermark_pct’], $SITE_CONFING[‘watermark_fontfile’],$SITE_CONFING[‘watermark_img’]);

}

function image()

{

$this-__construct();

}

function set($w_minwidth = 300, $w_minheight = 300, $w_quality = 80, $w_pct = 100,$fontfile,$w_img)

{

$this-w_minwidth = $w_minwidth;

$this-w_minheight = $w_minheight;

$this-w_quality = $w_quality;

$this-w_pct = $w_pct;

$this-fontfile = $fontfile;

$this-w_img = $w_img;

}

function info($img)

{

$imageinfo = getimagesize($img); //返回圖像信息數組 0=寬的像素 1=高的像素 2=是圖像類型的標記 3 =是文本字符串,內容為「height=”yyy” width=”xxx”」,

if($imageinfo === false) return false;

$imagetype = strtolower(substr(image_type_to_extension($imageinfo[2]),1)); //獲取圖像文件類型 $imageinfo[2]是圖像類型的標記

$imagesize = filesize($img); //圖像大小

$info = array(

‘width’=$imageinfo[0],

‘height’=$imageinfo[1],

‘type’=$imagetype,

‘size’=$imagesize,

‘mime’=$imageinfo[‘mime’]

);

return $info;

}

function thumb($image, $filename = ”, $maxwidth = 200, $maxheight = 50, $suffix=’_thumb’, $autocut = 0)

{

if(!$this-thumb_enable || !$this-check($image)) return false;

$info = $this-info($image); //獲取圖片信息

if($info === false) return false;

$srcwidth = $info[‘width’]; //源圖寬

$srcheight = $info[‘height’]; //源圖高

$pathinfo = pathinfo($image);

$type = $pathinfo[‘extension’]; //取得擴展名

if(!$type) $type = $info[‘type’]; //如果沒有取到,用$info[‘type’]

$type = strtolower($type);

unset($info);

$scale = min($maxwidth/$srcwidth, $maxheight/$srcheight); //獲取縮略比例

//獲取按照源圖的比列

$createwidth = $width = (int)($srcwidth*$scale); //取得縮略寬

$createheight = $height = (int)($srcheight*$scale); //取得縮略高

$psrc_x = $psrc_y = 0;

if($autocut) //按照縮略圖的比例來獲取

{

if($maxwidth/$maxheight$srcwidth/$srcheight $maxheight=$height) //如果縮略圖按比列比源圖窄的話

{

$width = $maxheight/$height*$width; //寬按照相應比例做處理

$height = $maxheight; //高不變

}

elseif($maxwidth/$maxheight$srcwidth/$srcheight $maxwidth=$width)//如果縮略圖按比列比源圖寬的話

{

$height = $maxwidth/$width*$height;

$width = $maxwidth;

}

$createwidth = $maxwidth;

$createheight = $maxheight;

}

$createfun = ‘imagecreatefrom’.($type==’jpg’ ? ‘jpeg’ : $type); //找到不同的圖像處理函數

$srcimg = $createfun($image); //新建圖像

if($type != ‘gif’ function_exists(‘imagecreatetruecolor’))

$thumbimg = imagecreatetruecolor($createwidth, $createheight); //新建一個真彩色圖像

else

$thumbimg = imagecreate($width, $height); //新建一個基於調色板的圖像

if(function_exists(‘imagecopyresampled’)) //重採樣拷貝部分圖像並調整大小,真彩

//imagecopyresampled(新圖,源圖,新圖左上角x距離,新圖左上角y距離,源圖左上角x距離,源圖左上角y距離,新圖寬,新圖高,源圖寬,源圖高)

imagecopyresampled($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height, $srcwidth, $srcheight);

else //拷貝部分圖像並調整大小,調色板

imagecopyresized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height, $srcwidth, $srcheight);

if($type==’gif’ || $type==’png’)

{

//imagecolorallocate 為一幅圖像分配顏色

$background_color = imagecolorallocate($thumbimg, 0, 255, 0); // 給基於調色板的圖像填充背景色, 指派一個綠色

// imagecolortransparent 將某個顏色定義為透明色

imagecolortransparent($thumbimg, $background_color); // 設置為透明色,若注釋掉該行則輸出綠色的圖

}

// imageinterlace 激活或禁止隔行掃描

if($type==’jpg’ || $type==’jpeg’) imageinterlace($thumbimg, $this-interlace);

$imagefun = ‘image’.($type==’jpg’ ? ‘jpeg’ : $type);

//imagejpeg imagegif imagepng

if(empty($filename)) $filename = substr($image, 0, strrpos($image, ‘.’)).$suffix.’.’.$type; //獲取文件名

//aaa.gif aaa_thumb.gif

$imagefun($thumbimg, $filename); //新建圖像

imagedestroy($thumbimg); //銷毀縮略圖

imagedestroy($srcimg); //銷毀源圖

return $filename;

}

//watermark(源圖,生成文件,生成位置,水印文件,水印文本,背景色)

function watermark($source, $target = ”, $w_pos = 0, $w_img = ”, $w_text = ”, $w_font = 12, $w_color = ‘#cccccc’)

{

if(!$this-watermark_enable || !$this-check($source)) return false;

if(!$target) $target = $source;

if ($w_img == ” $w_text == ”)

$w_img = $this-w_img;

$source_info = getimagesize($source);

$source_w = $source_info[0]; //獲取寬

$source_h = $source_info[1]; //獲取高

if($source_w $this-w_minwidth || $source_h $this-w_minheight) return false; //寬和高達不到要求直接返回

switch($source_info[2]) //新建圖片

{

case 1 :

$source_img = imagecreatefromgif($source);

break;

case 2 :

$source_img = imagecreatefromjpeg($source);

break;

case 3 :

$source_img = imagecreatefrompng($source);

break;

default :

return false;

}

if(!empty($w_img) file_exists($w_img)) //水印文件

{

$ifwaterimage = 1; //是否水印圖

$water_info = getimagesize($w_img); //水印信息

$width = $water_info[0];

$height = $water_info[1];

switch($water_info[2])

{

case 1 :

$water_img = imagecreatefromgif($w_img);

break;

case 2 :

$water_img = imagecreatefromjpeg($w_img);

break;

case 3 :

$water_img = imagecreatefrompng($w_img);

break;

default :

return;

}

}

else

{

$ifwaterimage = 0;

//imagettfbbox 本函數計算並返回一個包圍着 TrueType 文本範圍的虛擬方框的像素大小。

//imagettfbbox ( 字體大小, 字體角度, 字體文件,文件 )

$temp = imagettfbbox(ceil($w_font*1.2), 0, $this-fontfile, $w_text);//取得使用 truetype 字體的文本的範圍

$width = $temp[4] – $temp[6]; //右上角 X 位置 – 左上角 X 位置

$height = $temp[3] – $temp[5]; //右下角 Y 位置- 右上角 Y 位置

unset($temp);

}

switch($w_pos)

{

case 0: //隨機位置

$wx = rand(0,($source_w – $width));

$wy = rand(0,($source_h – $height));

break;

case 1: //左上角

$wx = 5;

$wy = 5;

break;

case 2: //上面中間位置

$wx = ($source_w – $width) / 2;

$wy = 0;

break;

case 3: //右上角

$wx = $source_w – $width;

$wy = 0;

break;

case 4: //左面中間位置

$wx = 0;

$wy = ($source_h – $height) / 2;

break;

case 5: //中間位置

$wx = ($source_w – $width) / 2;

$wy = ($source_h – $height) / 2;

break;

case 6: //底部中間位置

$wx = ($source_w – $width) / 2;

$wy = $source_h – $height;

break;

case 7: //左下角

$wx = 0;

$wy = $source_h – $height;

break;

case 8: //右面中間位置

$wx = $source_w – $width;

$wy = ($source_h – $height) /2;

break;

case 9: //右下角

$wx = $source_w – $width;

$wy = $source_h – $height ;

break;

default: //隨機

$wx = rand(0,($source_w – $width));

$wy = rand(0,($source_h – $height));

break;

}

if($ifwaterimage) //如果有水印圖

{

//imagecopymerge 拷貝併合並圖像的一部分

//參數(源圖,水印圖,拷貝到源圖x位置,拷貝到源圖y位置,從水印圖x位置,從水印圖y位置,高,寬,透明度)

imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this-w_pct);

}

else

{

if(!empty($w_color) (strlen($w_color)==7))

{

$r = hexdec(substr($w_color,1,2)); //獲取紅色

$g = hexdec(substr($w_color,3,2)); //獲取綠色

$b = hexdec(substr($w_color,5)); //獲取藍色

}

else

{

return;

}

//imagecolorallocate 基於調色板的圖像填充背景色

//imagestring 水平地畫一行字符串

//imagestring(源圖,字體大小,位置X,位置Y,文字,顏色)

//參數($image, float $size, float $angle, int $x, int $y, int $color, string $fontfile, string $text)

imagettftext($source_img,$w_font,0,$wx,$wy,imagecolorallocate($source_img,$r,$g,$b),$this-fontfile,$w_text);

//imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$g,$b));

}

//輸出到文件或者瀏覽器

switch($source_info[2])

{

case 1 :

imagegif($source_img, $target); //以 GIF 格式將圖像輸出到瀏覽器或文件

break;

case 2 :

imagejpeg($source_img, $target, $this-w_quality); //以 JPEG 格式將圖像輸出到瀏覽器或文件

break;

case 3 :

imagepng($source_img, $target); //以 PNG 格式將圖像輸出到瀏覽器或文件

break;

default :

return;

}

if(isset($water_info))

{

unset($water_info); //銷毀

}

if(isset($water_img))

{

imagedestroy($water_img); //銷毀

}

unset($source_info);

imagedestroy($source_img);

return true;

}

//gd庫必須存在,後綴為jpg|jpeg|gif|png,文件存在,imagecreatefromjpeg或者imagecreatefromgif存在

function check($image)

{

return extension_loaded(‘gd’)

preg_match(“/\.(jpg|jpeg|gif|png)/i”, $image, $m)

file_exists($image)

function_exists(‘imagecreatefrom’.($m[1] == ‘jpg’ ? ‘jpeg’ : $m[1]));

//imagecreatefromjpeg

//imagecreatefromgif

//imagecreatefrompng

}

}

/**

縮略圖

1.新建一個圖像資源 通過 imagecreatefromgif imagecreatefromjpeg imagecreatefrompng

2.imagecopyresampled 拷貝圖像,並調整大小

水印:圖片水印,文字水印

1. 創建圖像

2.加水印

圖片水印:imagecopymerge 把2張圖合併在一起

文字水印:imagettftext 向圖像寫入文字

*/

?

PHP圖像處理函數有哪些

php圖像處理函數大全

php圖片處理代碼分享,包括縮放、剪裁、縮放、翻轉、旋轉、透明、銳化等。需要的朋友可以參考下

一、創建圖片資源

imagecreatetruecolor(width,height);

imagecreatefromgif(圖片名稱);

imagecreatefrompng(圖片名稱);

imagecreatefromjpeg(圖片名稱);畫出各種圖像

imagegif(圖片資源,保存路徑);

imagepng()

imagejpeg();

二、獲取圖片屬性

imagesx(res//寬度

imagesy(res//高度

getimagesize(文件路徑)

返回一個具有四個單元的數組。索引

0 包含圖像寬度的像素值,索引 1 包含圖像高度的像素值。索引 2 是圖像類型的標記:1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 =

PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10

= JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM。這些標記與 PHP 4.3.0 新加的

IMAGETYPE 常量對應。索引 3 是文本字符串,內容為「height=”yyy” width=”xxx”」,可直接用於 IMG

標記。

銷毀圖像資源

imagedestroy(圖片資源);

三、透明處理

PNG、jpeg透明色都正常,只有gif不正常

imagecolortransparent(resource

image [,int

color])//將某個顏色設置成透明色

imagecolorstotal()

imagecolorforindex();

四、圖片的裁剪

imagecopyresized()

imagecopyresampled();

五、加水印(文字、圖片)

字符串編碼轉換string iconv ( string $in_charset ,

string $out_charset , string $str )

六、圖片旋轉

imagerotate();//制定角度的圖片翻轉

七、圖片的翻轉

沿X軸 沿Y軸翻轉

八、銳化

imagecolorsforindex()

imagecolorat()

php 在多個上傳圖片時 怎麼獲取 要上傳的圖片寬高

分兩個部分,一個是「多個圖片」,一個是獲取圖片的寬、高。

第一個用循環做到,也就是用for、foreach之類的東西遍歷你從頁面中得到的圖片數組

下一步用getimagesize()函數獲得圖片的信息。

此函數在php手冊里有解釋:圖像生成與處理→GD→GD and image函數里。

此函數返回的結果如下:

返回一個具有四個單元的數組。索引 0 包含圖像寬度的像素值,索引 1 包含圖像高度的像素值。索引 2 是圖像類型的標記:1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM。這些標記與 PHP 4.3.0 新加的 IMAGETYPE 常量對應。索引 3 是文本字符串,內容為「height=”yyy” width=”xxx”」,可直接用於 IMG 標記。

如何用PHP實現網頁截圖

代碼如下:

?php

set_time_limit(60);

//截屏

$im = imagegrabscreen();

imagepng($im, “snap1.png”);

//抓取IE窗口

$browser = new COM(“InternetExplorer.Application”);

$handle = $browser-HWND;

$browser-Visible = true;

$im = imagegrabwindow($handle);

$browser-Quit();

imagepng($im, “snap2.png”);

$im = imagegrabscreen();

//抓取IE窗口及窗口內容(IE為例)

$browser = new COM(“InternetExplorer.Application”);

$handle = $browser-HWND;

$browser-Visible = true;

$browser-Navigate(“”);

while ($browser-Busy) {

com_message_pump(4000);

}

$im = imagegrabwindow($handle, 0);

$browser-Quit();

imagepng($im, “snap3.png”);

// IE全屏模式

$browser = new COM(“InternetExplorer.Application”);

$handle = $browser-HWND;

$browser-Visible = true;

$browser-FullScreen = true;

$browser-Navigate(“”);

while ($browser-Busy) {

com_message_pump(4000);

}

$im = imagegrabwindow($handle, 0);

$browser-Quit();

imagepng($im, “snap4.png”);

//生成網站縮略圖

$browser = new COM(“InternetExplorer.Application”);

$handle = $browser-HWND;

$browser-Visible = true;

$browser-Fullscreen = true;

$browser-Navigate(“”);

while ($browser-Busy) {

    com_message_pump(4000);    //等待4秒

}

$im = imagegrabwindow($handle, 0); //抓取網頁圖像,需要php5.2.2以上版本的支持

$browser-Quit();

$new_img = imagecreatetruecolor(200,150);

imagecopyresampled($new_img,$im,0,0,0,0,200,150,1024,768);

imagejpeg($new_img , ‘snap5.jpg’,100);

imagedestroy($new_img);

echo “Done!”;

?

原創文章,作者:OUZR,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/147983.html

(0)
打賞 微信掃一掃 微信掃一掃 支付寶掃一掃 支付寶掃一掃
OUZR的頭像OUZR
上一篇 2024-11-02 13:13
下一篇 2024-11-02 13:13

相關推薦

  • PHP和Python哪個好找工作?

    PHP和Python都是非常流行的編程語言,它們被廣泛應用於不同領域的開發中。但是,在考慮擇業方向的時候,很多人都會有一個問題:PHP和Python哪個好找工作?這篇文章將從多個方…

    編程 2025-04-29
  • 如何在Java中拼接OBJ格式的文件並生成完整的圖像

    OBJ格式是一種用於表示3D對象的標準格式,通常由一組頂點、面和紋理映射坐標組成。在本文中,我們將討論如何將多個OBJ文件拼接在一起,生成一個完整的3D模型。 一、讀取OBJ文件 …

    編程 2025-04-29
  • 如何實現圖像粘貼到蒙版

    本文將從多個方面介紹圖像粘貼到蒙版的實現方法。 一、創建蒙版 首先,在HTML中創建一個蒙版元素,用於接收要粘貼的圖片。 <div id=”mask” style=”widt…

    編程 2025-04-29
  • PHP怎麼接幣

    想要在自己的網站或應用中接受比特幣等加密貨幣的支付,就需要對該加密貨幣擁有一定的了解,並使用對應的API進行開發。本文將從多個方面詳細闡述如何使用PHP接受加密貨幣的支付。 一、環…

    編程 2025-04-29
  • Python圖像黑白反轉用法介紹

    本文將從多個方面詳細闡述Python圖像黑白反轉的方法和技巧。 一、Pillow模塊介紹 Pillow是Python的一個圖像處理模塊,可以進行圖片的裁剪、旋轉、縮放等操作。使用P…

    編程 2025-04-28
  • Matlab二值圖像全面解析

    本文將全面介紹Matlab二值圖像的相關知識,包括二值圖像的基本原理、如何對二值圖像進行處理、如何從二值圖像中提取信息等等。通過本文的學習,你將能夠掌握Matlab二值圖像的基本操…

    編程 2025-04-28
  • 使用PHP foreach遍歷有相同屬性的值

    本篇文章將介紹如何使用PHP foreach遍歷具有相同屬性的值,並給出相應的代碼示例。 一、基礎概念 在講解如何使用PHP foreach遍歷有相同屬性的值之前,我們需要先了解幾…

    編程 2025-04-28
  • Python實現圖像轉化為灰度圖像

    本文將從多個方面詳細闡述如何使用Python將圖像轉化為灰度圖像,包括圖像的概念、灰度圖像的概念、Python庫的使用以及完整的Python代碼實現。 一、圖像與灰度圖像 圖像是指…

    編程 2025-04-28
  • 圖像與信號處理期刊級別

    本文將從多個方面介紹圖像與信號處理期刊級別的相關知識,包括圖像壓縮、人臉識別、關鍵點匹配等等。 一、圖像壓縮 圖像在傳輸和存儲中佔據了大量的空間,因此圖像壓縮成為了很重要的技術。常…

    編程 2025-04-28
  • PHP獲取301跳轉後的地址

    本文將為大家介紹如何使用PHP獲取301跳轉後的地址。301重定向是什麼呢?當我們訪問一個網頁A,但是它已經被遷移到了另一個地址B,此時若服務器端做了301重定向,那麼你的瀏覽器在…

    編程 2025-04-27

發表回復

登錄後才能評論