Although in HTML you can scale the image arbitrarily by specifying the width and height of the image, this method will not reduce the number of pixels in the image. The size of the graphics file has not changed, and it certainly does not speed up image downloads. Of course, you can also manually generate thumbnails of images through graphics software, but for a large number of image displays, this workload will be huge. An automatic generation program for miniatures was designed for this purpose.
The imagecopyresized function provided in PHP can be used to generate real abbreviated images. The standard
syntax of this function is as follows:
Syntax: int imagecopyresized(int dst_im, int src_im, int dstX, int dstY,
int srcX, int srcY, int dstW, int dstH, int srcW, int srcH);
Return value: Integer
Function type: Graphics processing
Content description: This function can copy a new picture and resize the picture. The parameters all have the purpose first and the source last. The parameters dst im and src_im are the handles of the image. The parameters dstX, dstY, srcX, and srcY are the coordinates of the destination and source respectively. The parameters dstW, dstH, srcW, and srcH are the width and height of the source and destination respectively. The size of the new image to be adjusted is configured here.
The following is an example to illustrate the usage of this function. The corresponding program thumb.php is shown in Program Listing 12-5.
Program Listing 12—5 thumb.php
// This function takes out the image from the source file, sets it to the specified size, and outputs it to the destination file
// Source file format: gif, jpg, png
// Destination file format: gif
// $srcFile: Source file
// $dstFile: Target file
// $dstW: Target image width
// $dstH: Target file height
function makethumb($srcFile,$dstFile ,$dstW,$dstH)
{
$data = GetImageSize($srcFile,&$info);
switch ($data[2])
{
case 1:
$imgsrc = @ImageCreateFromGIF($srcFile);
break;
case 2:
$imgsrc = @ImageCreateFromJPEG($srcFile);
break;
case 3:
$ imgsrc = @ImageCreateFromPNG($srcFile);
break;
}
$srcW = ImageSX($imgsrc);
$srcH = ImageSY($imgsrc);
$ni = ImageCreate( $dstW,$dstH);
ImageCopyResized($ni,$imgsrc,0,0,0,0,$dstW,$dstH,$srcW,$srcH);
Imagegif($ni,$dstFile) ;
// If you need to output to the browser, then change the previous sentence to ImageJpeg($ni);
// If you need images in other formats, just change the last sentence
}
?>
In this example, first obtain the source image through the getimagesize() function, and then use imagecreatefromgif(),
imagecreatefromjpeg() or imagecreatefrompng() to create a source bitmap $imgsrc, and then use the
imagecreate() function to create a target bitmap whose length and width are half of the source bitmap. Then call the imagecopyresized()
function to reduce the source bitmap and copy it to the target bitmap, and finally use the imagegif() function to generate a thumbnail.
The graphics processing functions used here are provided by the installed GD library, and they are explained separately now. First
introduce the getimagesize() function, its standard syntax is as follows.
Syntax: array getimagesize(string filename,array [imageinfo]);
Return value: array
Function type: Graphics processing
Content description: This function can be used to obtain 3 types of GIF, JPEG and PNG You can use this function to set the height and width of images on WWW without installing the GD library. The returned array has 4 elements. The first element of the returned array (index value 0) is the height of the picture in pixels; the second element (index value 1) is the width of the picture; the third element (Index value 2) is the file format of the image, its value 1 is GIF format, 2 is JPEG/JPG format, and 3 is PNG format;
The fourth element (index value 3) is the height and width string of the image , height=xxx width=yyy.
Through the application of the getimagesize() function, various information about the image can be easily obtained. Let me give you an example of obtaining image width, height, format, and file size information to further understand the usage skills of the getimagesize() function.
The program imginfo is shown in Program Listing 12-6.
Program List 12-6 imginfo.php
function getImageInfo($img) //$img is the absolute path of the image file
{
$img_info = getimagesize($img);
switch ($ img_info[2])
{
case 1:
$imgtype = "GIF";
break;
case 2:
$imgtype = "JPG";
break ;
case 3:
$imgtype = "PNG";
break;
}
$img_type = $imgtype."image";
$img_size = ceil(filesize($ img)/1000)."k"; //Get the file size
$new_img_info = array (
"width"=>$img_info[0],
"height"=> $img_info[1],
"type"=>$img_type,
"size"=>$img_size
);
print " width";
print $img_info[0 ];
print " height";
print $img_info[1];
print " format";
print $img_type;
print " size";
print $img_size;
print $new_img_info;
}
$img = "/www/htdocs/images/jf.gif";
getImageInfo($img);
?>
To create a thumbnail in Program 12-5, you need to first create a blank canvas for drawing.
ImageCreate function can do this. It will return an identifier for the image, and you need to tell the function how big the canvas is in pixels
(x (width) vs. y (height)). The standard syntax of the image creation function imagecreate()
used in Program 12-5 is as follows:
Syntax: int imagecreate(int x_size, int y_size);
Return value: integer
Function type :Graphics processing
Content description: This function is used to create a completely empty graph. The parameters x_size and y_size are the size of the graphic, and the unit
is pixel.
If you want to extract the image file code from an existing image, you can use imagecreatefromgif(),
imagecreatefromjpeg() or imagecreatefrompng(). For example, the function imagecreatefromgif() is to extract the image file code from a GIF
format. Get the corresponding image source code from the image file. The standard syntax is as follows:
Syntax: int imagecreatefromgif(string filename);
Return value: integer
Function type: Graphics processing
Content description: This function Used to take out a GIF format graphic, usually used as a background or basic canvas sample
. The parameter filename can be a local file or a network URL address. The return value is the file
code of GIF, which can be used by other functions.
When the source bitmap is reduced and copied to the target bitmap, the imagecopyresized() function is used. This function can
copy the new image and resize it. Its standard syntax is as follows:
Syntax: int imagecopyresized (int dst_im,int src_im,int dstX,int dstY,int srcX,int srcY,
int dstW,int dstH,int srcW,int srcH);
Return value: integer
Function type: graphics processing
Content description: This function can copy a new image and resize the image. For parameters, the purpose comes first and the source comes last. The parameters ddst_im and src_im are the handles of the image. The parameters dstX, dstY, srcX, and srcY are the coordinates of the destination
and the source respectively. The parameters dstW, dstH, srcW, and srcH are the width and height of the source and destination respectively. If you want to adjust the size of the new image
, configure it here.
The standard syntax of the imagegif() function used in outputting images is as follows:
Syntax: int imagegif(int im,string [filename]);
Return value: integer
Function type : Graphic processing
Content description: This function is used to create a GIF format graphic. The parameter im is the image code of
created using ImageCreate(). The parameter filename can be omitted. If there is no parameter filename, the image will be sent directly to the browser.
Remember to send the image before sending it. Content-type:image/gif header string (header) to the browser
to smoothly transmit the image. If you want to use a GIF image with a transparent background, which is the GIF89a format, you need to use
ImageColorTransparent() to configure a transparent background first. The GIF image generated by this function has copyright issues, so
needs to be considered more when used commercially.

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
