この記事では、主に PHP のサムネイル生成と画像のウォーターマークの作成プロセスを詳しく紹介します。ウォーターマークの追加とサムネイルの生成を実装するための PHP の関連手順は、興味のある方は参考にしてください。 1. アップロードのプロセスを開始します。 Webサイト上の画像ではサムネイル機能がよく使われます。ここでは、サムネイルを生成し、ウォーターマークを追加できる画像処理用の Image クラスを作成しました。
2. サムネイルの生成方法
サムネイルを生成する鍵となるのは、ズーム率の計算方法です。
ここでは、画像のスケーリングと、幅と高さのいくつかの一般的な変更に基づいて、新しい画像 (サムネイルなど) の幅と高さを使用して、それを幅と高さで割るアルゴリズムを考え出しました。元の画像の高さを参照してください。どの値が大きいかをズーム率として受け取ります:
ズーム率 = 最大 ({新しいマップの高さ / 元の高さ、新しいマップの幅 / 元の画像の幅})
(新しい画像の高さレベル (新しいグラフの高さレベル / 元の画像の高さ) & gt; (新しいマップの幅 / 元の画像の幅)) {
ズーム率 = 新しいマップの高さ / 元の画像の高さ ;
}
画像のスケーリング シナリオとシーンの処理方法は次のとおりです:例:
シーン 1、元の画像が新しい画像より大きい場合、スケーリング比 = 新しい画像の幅 / 元の画像幅:
シナリオ 2、元の画像が新しい画像より大きい、b. スケーリング比 = 新しい画像の高さ / 元の画像の高さ:
シナリオ 3、元の画像が新しい画像より大きいこの状況で、新しい画像の幅と高さが等しい、つまり新しい画像の形状が正方形である場合、上記のスケーリング アルゴリズムも適用できます。
シナリオ 4、「新しい画像の幅 >= 元の画像の幅」かつ「新しい画像の高さ >= 元の画像の高さ」の場合、画像は拡大縮小または拡大されず、元の画像が維持されます。 シナリオ 5、「新しい画像の幅 = 元の画像の高さ」の場合、最初に「新しい画像の高さ = 元の画像の高さ」を設定してからカットします。 シーン6、「新しい画像の高さ = 元の画像の幅」の場合、最初に「新しい画像の幅 = 元の画像の幅」を設定してからカットします。3. 画像に透かしを追加する方法
ここでは、透かしの追加は非常に簡単です。重要なことは、右下の透かしの位置を制御することです。画像の角と画像内の透かしのサイズ。たとえば、ターゲット画像と透かし画像のサイズが近い場合、まず透かし画像を比例的に拡大縮小してから、透かし画像を追加する必要があります。
左の2枚の写真、上が元の写真、下が透かし入りの写真、右が拡大縮小して透かしを追加した後の新しい写真です。
4. クラス図
5.PHP コード
5.1. コンストラクター __construct()
コンストラクター __construct に加えて、Image クラス内( ) は公開です、他の関数はプライベートです。つまり、関数 __construct() では、サムネイルの生成とウォーターマークの追加の関数が直接完了します。ウォーターマークを追加せずにサムネイルのみを生成する場合は、__construct() のパラメーター $markPath を null に直接設定します。
ここで、「$this->quality = $quality ? $quality : 75;」は、出力が JPG 画像の場合の画質 (0 ~ 100) を制御します。デフォルト値は 75 です。 Note: 先生成缩略图,再在新图上添加水印 图片。 5.2. 生成缩略图函数_thumb() 生成缩略图函数_thumb() ,是按照前面的分析来进行编码。 5.3. 添加水印图片函数 _addWaterMark() 在添加水印图片中,用到一个_thumb1()函数来缩放水印图片: 5.4. 完整代码: 6.调用 调用非常简单,在引入类后,直接new 并输入对应参数即可: e.g. new Image($_path, MARK, 400, 200, 100); 7.小结 以上就是本文的全部内容,希望对大家的学习有所帮助。 相关推荐:
/**
* 缩略图(按等比例,根据设置的宽度和高度进行裁剪)
*/
private function _thumb()
{
//如果原图本身小于缩略图,按原图长高
if ($this->newWidth > $this->width) $this->newWidth = $this->width;
if ($this->newHeight > $this->height) $this->newHeight = $this->height;
//背景图长高
$gd_width = $this->newWidth;
$gd_height = $this->newHeight;
//如果缩略图宽高,其中有一边等于原图的宽高,就直接裁剪
if ($gd_width == $this->width || $gd_height == $this->height) {
$this->newWidth = $this->width;
$this->newHeight = $this->height;
} else {
//计算缩放比率
$per = 1;
if (($this->newHeight / $this->height) > ($this->newWidth / $this->width)) {
$per = $this->newHeight / $this->height;
} else {
$per = $this->newWidth / $this->width;
}
if ($per < 1) {
$this->newWidth = $this->width * $per;
$this->newHeight = $this->height * $per;
}
}
$this->newImg = $this->_CreateImg($gd_width, $gd_height, $this->type);
imagecopyresampled($this->newImg, $this->img, 0, 0, 0, 0, $this->newWidth, $this->newHeight, $this->width, $this->height);
}
/**
* 添加水印
*/
private function _addWaterMark()
{
$ratio = 1 / 5; //水印缩放比率
$Width = imagesx($this->newImg);
$Height = imagesy($this->newImg);
$n_width = $Width * $ratio;
$n_height = $Width * $ratio;
list($markWidth, $markHeight, $markType) = getimagesize($this->waterMarkPath);
if ($n_width > $markWidth) $n_width = $markWidth;
if ($n_height > $markHeight) $n_height = $markHeight;
$Img = $this->_loadImg($this->waterMarkPath, $markType);
$Img = $this->_thumb1($Img, $markWidth, $markHeight, $markType, $n_width, $n_height);
$markWidth = imagesx($Img);
$markHeight = imagesy($Img);
imagecopyresampled($this->newImg, $Img, $Width - $markWidth - 10, $Height - $markHeight - 10, 0, 0, $markWidth, $markHeight, $markWidth, $markHeight);
imagedestroy($Img);
}
/**
* 缩略图(按等比例)
* @param resource $img 图像流
* @param int $width
* @param int $height
* @param int $type
* @param int $new_width
* @param int $new_height
* @return resource
*/
private function _thumb1($img, $width, $height, $type, $new_width, $new_height)
{
if ($width < $height) {
$new_width = ($new_height / $height) * $width;
} else {
$new_height = ($new_width / $width) * $height;
}
$newImg = $this->_CreateImg($new_width, $new_height, $type);
imagecopyresampled($newImg, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
return $newImg;
}
<?php
/**
* 图片处理,生成缩略图和添加水印图片
* Created by PhpStorm.
* User: andy
* Date: 17-1-3
* Time: 上午11:55
*/
class Image
{
//原图
private $imgPath; //图片地址
private $width; //图片宽度
private $height; //图片高度
private $type; //图片类型
private $img; //图片(图像流)
//缩略图
private $newImg; //缩略图(图像流)
private $newWidth;
private $newHeight;
//水印图路径
private $waterMarkPath;
//输出图像质量,jpg有效
private $quality;
/**
* Image constructor.
* @param string $imagePath 图片路径
* @param string $markPath 水印图片路径
* @param int $new_width 缩略图宽度
* @param int $new_height 缩略图高度
* @param int $quality JPG图片格输出质量
*/
public function __construct(string $imagePath,
string $markPath = null,
int $new_width = null,
int $new_height = null,
int $quality = 75)
{
$this->imgPath = $_SERVER['DOCUMENT_ROOT'] . $imagePath;
$this->waterMarkPath = $markPath;
$this->newWidth = $new_width ? $new_width : $this->width;
$this->newHeight = $new_height ? $new_height : $this->height;
$this->quality = $quality ? $quality : 75;
list($this->width, $this->height, $this->type) = getimagesize($this->imgPath);
$this->img = $this->_loadImg($this->imgPath, $this->type);
//生成缩略图
$this->_thumb();
//添加水印图片
if (!empty($this->waterMarkPath)) $this->_addWaterMark();
//输出图片
$this->_outputImg();
}
/**
*图片输出
*/
private function _outputImg()
{
switch ($this->type) {
case 1: // GIF
imagegif($this->newImg, $this->imgPath);
break;
case 2: // JPG
if (intval($this->quality) < 0 || intval($this->quality) > 100) $this->quality = 75;
imagejpeg($this->newImg, $this->imgPath, $this->quality);
break;
case 3: // PNG
imagepng($this->newImg, $this->imgPath);
break;
}
imagedestroy($this->newImg);
imagedestroy($this->img);
}
/**
* 添加水印
*/
private function _addWaterMark()
{
$ratio = 1 / 5; //水印缩放比率
$Width = imagesx($this->newImg);
$Height = imagesy($this->newImg);
$n_width = $Width * $ratio;
$n_height = $Width * $ratio;
list($markWidth, $markHeight, $markType) = getimagesize($this->waterMarkPath);
if ($n_width > $markWidth) $n_width = $markWidth;
if ($n_height > $markHeight) $n_height = $markHeight;
$Img = $this->_loadImg($this->waterMarkPath, $markType);
$Img = $this->_thumb1($Img, $markWidth, $markHeight, $markType, $n_width, $n_height);
$markWidth = imagesx($Img);
$markHeight = imagesy($Img);
imagecopyresampled($this->newImg, $Img, $Width - $markWidth - 10, $Height - $markHeight - 10, 0, 0, $markWidth, $markHeight, $markWidth, $markHeight);
imagedestroy($Img);
}
/**
* 缩略图(按等比例,根据设置的宽度和高度进行裁剪)
*/
private function _thumb()
{
//如果原图本身小于缩略图,按原图长高
if ($this->newWidth > $this->width) $this->newWidth = $this->width;
if ($this->newHeight > $this->height) $this->newHeight = $this->height;
//背景图长高
$gd_width = $this->newWidth;
$gd_height = $this->newHeight;
//如果缩略图宽高,其中有一边等于原图的宽高,就直接裁剪
if ($gd_width == $this->width || $gd_height == $this->height) {
$this->newWidth = $this->width;
$this->newHeight = $this->height;
} else {
//计算缩放比率
$per = 1;
if (($this->newHeight / $this->height) > ($this->newWidth / $this->width)) {
$per = $this->newHeight / $this->height;
} else {
$per = $this->newWidth / $this->width;
}
if ($per < 1) {
$this->newWidth = $this->width * $per;
$this->newHeight = $this->height * $per;
}
}
$this->newImg = $this->_CreateImg($gd_width, $gd_height, $this->type);
imagecopyresampled($this->newImg, $this->img, 0, 0, 0, 0, $this->newWidth, $this->newHeight, $this->width, $this->height);
}
/**
* 缩略图(按等比例)
* @param resource $img 图像流
* @param int $width
* @param int $height
* @param int $type
* @param int $new_width
* @param int $new_height
* @return resource
*/
private function _thumb1($img, $width, $height, $type, $new_width, $new_height)
{
if ($width < $height) {
$new_width = ($new_height / $height) * $width;
} else {
$new_height = ($new_width / $width) * $height;
}
$newImg = $this->_CreateImg($new_width, $new_height, $type);
imagecopyresampled($newImg, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
return $newImg;
}
/**
* 加载图片
* @param string $imgPath
* @param int $type
* @return resource
*/
private function _loadImg($imgPath, $type)
{
switch ($type) {
case 1: // GIF
$img = imagecreatefromgif($imgPath);
break;
case 2: // JPG
$img = imagecreatefromjpeg($imgPath);
break;
case 3: // PNG
$img = imagecreatefrompng($imgPath);
break;
default: //其他类型
Tool::alertBack('不支持当前图片类型.' . $type);
break;
}
return $img;
}
/**
* 创建一个背景图像
* @param int $width
* @param int $height
* @param int $type
* @return resource
*/
private function _CreateImg($width, $height, $type)
{
$img = imagecreatetruecolor($width, $height);
switch ($type) {
case 3: //png
imagecolortransparent($img, 0); //设置背景为透明的
imagealphablending($img, false);
imagesavealpha($img, true);
break;
case 4://gif
imagecolortransparent($img, 0);
break;
}
return $img;
}
}
这个Image 类能够生成缩略图,不出现黑边,添加水印图,能根据图片的大小缩放水印图。当然有个缺点,就是不能缩放GIF的动画,因为涉及到帧的处理,比较麻烦。
以上がPHPサムネイル生成と画像ウォーターマーク作成について詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。