GD 和图像处理 函数 业 ,精于勤 荒于嬉.
- GD 和图像处理 函数 gd_info 取得当前安装的 GD 库的信息
-
发表日期:2021-07-01 08:55:55 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php var_dump(gd_info()); ?>
- GD 和图像处理 函数 getimagesize 取得图像大小
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php list($width, $height, $type, $attr) = getimagesize("img/flag.jpg"); echo "<img src=\"img/flag.jpg\" $attr>"; ?>
示例2
<?php $size = getimagesize("http://www.example.com/gifs/logo.gif"); // if the file name has space in it, encode it properly$size = getimagesize("http://www.example.com/gifs/lo%20go.gif"); ?>
示例3
<?php $size = getimagesize($filename); $fp=fopen($filename, "rb"); if ($size && $fp) { header("Content-type: { $size['mime']} "); fpassthru($fp); exit; } else { // error} ?>
示例4
<?php $size = getimagesize("testimg.jpg", &$info); if (isset($info["APP13"])) { $iptc = iptcparse($info["APP13"]); var_dump($iptc); } ?>
示例5
<?php $size = getimagesize($filename); $fp = fopen($filename, "rb"); if ($size && $fp) { header("Content-type: { $size['mime']} "); fpassthru($fp); exit; } else { // error} ?>
示例6
<?php list($width, $height, $type, $attr) = getimagesize("img/flag.jpg"); echo "<img src=\"img/flag.jpg\" $attr alt=\"getimagesize() example\" />"; ?>
示例7
<?php $size = getimagesize("http://www.example.com/gifs/logo.gif"); // if the file name has space in it, encode it properly$size = getimagesize("http://www.example.com/gifs/lo%20go.gif"); ?>
示例8
<?php $size = getimagesize("testimg.jpg", $info); if (isset($info["APP13"])) { $iptc = iptcparse($info["APP13"]); var_dump($iptc); } ?>
- GD 和图像处理 函数 getimagesizefromstring 从字符串中获取图像尺寸信息
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $img = '/path/to/test.png'; // 以文件方式打开$size_info1 = getimagesize($img); // 以字符串格式打开$data = file_get_contents($img); $size_info2 = getimagesizefromstring($data); ?>
- GD 和图像处理 函数 image_type_to_extension 取得图像类型的文件后缀
-
发表日期:2021-07-01 08:55:55 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php // 创建图像实例$im = imagecreatetruecolor(100, 100); // 保存图像imagepng($im, './test' . image_type_to_extension(IMAGETYPE_PNG)); imagedestroy($im); ?>
- GD 和图像处理 函数 image_type_to_mime_type 取得 getimagesize,exif_read_data,exif_thumbnail,exif_imagetype 所返回的图像类型的 MIME 类型
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php header("Content-type: " . image_type_to_mime_type(IMAGETYPE_PNG)); ?>
- GD 和图像处理 函数 image2wbmp 以 WBMP 格式将图像输出到浏览器或文件
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $file = 'php.jpg'; $image = imagecreatefrompng($file); header('Content-type: ' . image_type_to_mime(IMAGETYPE_WBMP)); image2wbmp($file); // output the stream directly?>
- GD 和图像处理 函数 imageaffine 返回经过仿射变换后的图像,剪切区域可选
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
imageaffine
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
imageaffine — 返回经过仿射变换后的图像,剪切区域可选
说明
imageaffine(resource$image
, array$affine
, array$clip
= ?): resource警告本函数还未编写文档,仅有参数列表。
参数
-
image
-
由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
-
affine
-
数组,其中键为 0 至 5 的数字。
-
clip
-
数组,其中键为 "x","y","width" 和 "height"。
返回值
成功则返回仿射变换后的图像, 或者在失败时返回
false
. -
- GD 和图像处理 函数 imageaffinematrixconcat Concatenate two affine transformation matrices
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $m1 = imageaffinematrixget(IMG_AFFINE_TRANSLATE, array('x' = 2, 'y' => 3)); $m2 = imageaffinematrixget(IMG_AFFINE_SCALE, array('x' = 4, 'y' => 5)); $matrix = imageaffinematrixconcat($m1, $m2); print_r($matrix); ?>
- GD 和图像处理 函数 imageaffinematrixget Get an affine transformation matrix
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $matrix = imageaffinematrixget(IMG_AFFINE_TRANSLATE, array('x' => 2, 'y' => 3)); print_r($matrix); ?>
- GD 和图像处理 函数 imagealphablending 设定图像的混色模式
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php // Create image$im = imagecreatetruecolor(100, 100); // Set alphablending to onimagealphablending($im, true); // Draw a squareimagefilledrectangle($im, 30, 30, 70, 70, imagecolorallocate($im, 255, 0, 0)); // Outputheader('Content-type: image/png'); imagepng($im); imagedestroy($im); ?>
- GD 和图像处理 函数 imageantialias 是否使用抗锯齿(antialias)功能
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php // Setup an anti-aliased image and a normal image$aa = imagecreatetruecolor(400, 100); $normal = imagecreatetruecolor(200, 100); // Switch antialiasing on for one imageimageantialias($aa, true); // Allocate colors$red = imagecolorallocate($normal, 255, 0, 0); $red_aa = imagecolorallocate($aa, 255, 0, 0); // Draw two lines, one with AA enabledimageline($normal, 0, 0, 200, 100, $red); imageline($aa, 0, 0, 200, 100, $red_aa); // Merge the two images side by side for output (AA: left, Normal: Right)imagecopymerge($aa, $normal, 200, 0, 0, 0, 200, 100, 100); // Output imageheader('Content-type: image/png'); imagepng($aa); imagedestroy($aa); imagedestroy($normal); ?>
- GD 和图像处理 函数 imagearc 画椭圆弧
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php // 创建一个 200X200 的图像$img = imagecreatetruecolor(200, 200); // 分配颜色$white = imagecolorallocate($img, 255, 255, 255); $black = imagecolorallocate($img, 0, 0, 0); // 画一个黑色的圆imagearc($img, 100, 100, 150, 150, 0, 360, $black); // 将图像输出到浏览器header("Content-type: image/png"); imagepng($img); // 释放内存imagedestroy($img); ?>
- GD 和图像处理 函数 imagebmp Output a BMP image to browser or file
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php // Create a blank image and add some text$im = imagecreatetruecolor(120, 20); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 1, 5, 5, 'BMP with PHP', $text_color); // Save the imageimagebmp($im, 'php.bmp'); // Free up memoryimagedestroy($im); ?>
- GD 和图像处理 函数 imagechar 水平地画一个字符
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $im = imagecreate(100,100); $string = 'PHP'; $bg = imagecolorallocate($im, 255, 255, 255); $black = imagecolorallocate($im, 0, 0, 0); // prints a black "P" in the top left cornerimagechar($im, 1, 0, 0, $string, $black); header('Content-type: image/png'); imagepng($im); ?>
- GD 和图像处理 函数 imagecharup 垂直地画一个字符
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $im = imagecreate(100,100); $string = 'Note that the first letter is a N'; $bg = imagecolorallocate($im, 255, 255, 255); $black = imagecolorallocate($im, 0, 0, 0); // prints a black "Z" on a white backgroundimagecharup($im, 3, 10, 10, $string, $black); header('Content-type: image/png'); imagepng($im); ?>
- GD 和图像处理 函数 imagecolorallocate 为一幅图像分配颜色
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $im = imagecreate('example.jpg', 100, 100); // 背景设为红色$background = imagecolorallocate($im, 255, 0, 0); // 设定一些颜色$white = imagecolorallocate($im, 255, 255, 255); $black = imagecolorallocate($im, 0, 0, 0); // 十六进制方式$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); $black = imagecolorallocate($im, 0x00, 0x00, 0x00); ?>
- GD 和图像处理 函数 imagecolorallocatealpha 为一幅图像分配颜色 + alpha
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $size = 300; $image=imagecreatetruecolor($size, $size); // 用白色背景加黑色边框画个方框$back = imagecolorallocate($image, 255, 255, 255); $border = imagecolorallocate($image, 0, 0, 0); imagefilledrectangle($image, 0, 0, $size - 1, $size - 1, $back); imagerectangle($image, 0, 0, $size - 1, $size - 1, $border); $yellow_x = 100; $yellow_y = 75; $red_x = 120; $red_y = 165; $blue_x = 187; $blue_y = 125; $radius = 150; // 用 alpha 值分配一些颜色$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75); $red = imagecolorallocatealpha($image, 255, 0, 0, 75); $blue = imagecolorallocatealpha($image, 0, 0, 255, 75); // 画三个交迭的圆imagefilledellipse($image, $yellow_x, $yellow_y, $radius, $radius, $yellow); imagefilledellipse($image, $red_x, $red_y, $radius, $radius, $red); imagefilledellipse($image, $blue_x, $blue_y, $radius, $radius, $blue); // 不要忘记输出正确的 header!header('Content-type: image/png'); // 最后输出结果imagepng($image); imagedestroy($image); ?>
示例2
<?php $size = 300; $image=imagecreatetruecolor($size, $size); // something to get a white background with black border$back = imagecolorallocate($image, 255, 255, 255); $border = imagecolorallocate($image, 0, 0, 0); imagefilledrectangle($image, 0, 0, $size - 1, $size - 1, $back); imagerectangle($image, 0, 0, $size - 1, $size - 1, $border); $yellow_x = 100; $yellow_y = 75; $red_x = 120; $red_y = 165; $blue_x = 187; $blue_y = 125; $radius = 150; // allocate colors with alpha values$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75); $red = imagecolorallocatealpha($image, 255, 0, 0, 75); $blue = imagecolorallocatealpha($image, 0, 0, 255, 75); // drawing 3 overlapped circleimagefilledellipse($image, $yellow_x, $yellow_y, $radius, $radius, $yellow); imagefilledellipse($image, $red_x, $red_y, $radius, $radius, $red); imagefilledellipse($image, $blue_x, $blue_y, $radius, $radius, $blue); // don't forget to output a correct header!header('Content-Type: image/png'); // and finally, output the resultimagepng($image); imagedestroy($image); ?>
- GD 和图像处理 函数 imagecolorat 取得某像素的颜色索引值
-
发表日期:2021-07-01 08:55:57 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php $im = ImageCreateFromPng("rockym.png"); $rgb = ImageColorAt($im, 100, 100); $r = ($rgb >> 16) & 0xFF; $g = ($rgb >> 8) & 0xFF; $b = $rgb & 0xFF; ?>
- GD 和图像处理 函数 imagecolorclosest 取得与指定的颜色最接近的颜色的索引值
-
发表日期:2021-07-01 08:55:56 | 来源: | 分类:GD 和图像处理 函数
-
imagecolorclosest
(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolorclosest — 取得与指定的颜色最接近的颜色的索引值
说明
imagecolorclosest(
resource$image
,
int$red
,
int$green
,
int$blue
): int返回图像调色板中与指定的 RGB 值最“接近”的颜色。
指定的颜色与调色板中的每个颜色的“距离”的计算方法是把 RGB 值当成三维空间中点的坐标。
如果从文件创建了图像,只有图像中使用了的颜色会被辨析。仅出现在调色板中的颜色不会被辨析。
- GD 和图像处理 函数 imagecolorclosestalpha 取得与指定的颜色加透明度最接近的颜色
-
发表日期:2021-07-01 08:55:57 | 来源: | 分类:GD 和图像处理 函数
-
示例1
<?php // Start with an image and convert it to a palette-based image$im = imagecreatefrompng('figures/imagecolorclosest.png'); imagetruecolortopalette($im, false, 255); // Search colors (RGB)$colors = array( array(254, 145, 154, 50), array(153, 145, 188, 127), array(153, 90, 145, 0), array(255, 137, 92, 84)); // Loop through each search and find the closest color in the palette.// Return the search number, the search RGB and the converted RGB matchforeach($colors as $id => $rgb){ $result = imagecolorclosestalpha($im, $rgb[0], $rgb[1], $rgb[2], $rgb[3]); $result = imagecolorsforindex($im, $result); $result = "({ $result['red']} , { $result['green']} , { $result['blue']} , { $result['alpha']} )"; echo "#$id: Search ($rgb[0], $rgb[1], $rgb[2], $rgb[3]); Closest match: $result.\n"; } imagedestroy($im); ?>
- PHP杂项(34)
- PHP基础-李炎恢系列课程(20)
- 中文函数手册(0)
- 错误处理 函数(13)
- OPcache 函数(6)
- PHP 选项/信息 函数(54)
- Zip 函数(10)
- Hash 函数(15)
- OpenSSL 函数(63)
- Date/Time 函数(51)
- 目录函数(9)
- Fileinfo 函数(6)
- iconv 函数(11)
- 文件系统函数(81)
- 多字节字符串 函数(57)
- GD 和图像处理 函数(114)
- 可交换图像信息(5)
- Math 函数(50)
- 程序执行函数(11)
- PCNTL 函数(23)
- JSON 函数(4)
- SPL 函数(15)
- URL 函数(10)
- cURL 函数(32)
- 网络 函数(33)
- FTP 函数(36)
- Session 函数(23)
- PCRE 函数(11)
- PCRE 正则语法(19)
- 数组 函数(81)
- 类/对象 函数(18)
- 函数处理 函数(13)
- 变量处理 函数(37)
- SimpleXML 函数(3)
- 杂项 函数(31)
- 字符串 函数(101)