Home Backend Development PHP Tutorial Image processing in php

Image processing in php

Apr 23, 2018 am 10:56 AM
php Image Processing

The content of this article is about image processing in php, which has certain reference value. Now I share it with you. Friends in need can refer to it

Image processing
Image format
jpeg/jpg
png
is a A kind of network image, using lossless compression standard
gif
Dynamic pictures
What can image processing do
Draw a picture
Verification code
Change the picture
Scaling of the image (to prevent the image from being too large and wasting resources), adding a watermark ( Prevent image theft)
GD library
The GD library itself is an extension, you need to check whether it is turned on
View PHP extension file C: \xampp\php\extWhether there is php_gd2.dll
Check whether php_gd2.dll is enabled in php.ini or you can check it through phpinfo
drawing
Steps
1. Create a background image
imagecreatetruecolor(width, height)
imagecolorallocate(resource, red, Green, blue)
imagefill() fills the canvas
Note: imagefill is area filling, it will only fill the colors adjacent to the x and y coordinates and the same color, Even if the colors are not adjacent, they will not be filled
2. Draw on the background or enter text
imagsetpixel() to draw dots
imageline() line drawing
imagerectangle() rectangle
imageellipse() ellipse
imagettftext(resource, font size, angle, x , y, color, font, written content)
x, y represents the coordinates of the lower left corner of the first character
To include the font file
If you want to write Chinese, you need to find a font that supports Chinese
imagettfbbox() gets the range of the text
imagettfbbox() returns a font containing 8 The four corners of the text frame represented by a cell array X position of the lower right corner
        3 Y position of the lower right corner
        4 X position of the upper right corner
          5 Y position of the upper right corner
          6 X position of the upper left corner
7 Y position of the upper left corner
How to get the width and height of a custom font
abs($array[0]-$array[2]); Font width
abs($array[7]-$array[1]); Font height
3. Output or save the image
imagejpeg()
imagepng()
imagegif()
If the file name is not written but a required parameter (resource) is written, it means output to the browser
4. Close the resource
imagedestroy ()
Other
imagecreateformjpeg()
imagecreatefrompng()
imagecreatefromgif()
Create a canvas from a file
Image scaling
imagecopyresampled(target image, source image, target x-axis 0, target y-axis 0, source x 0, source y 0, target width, target height, source Width, source height)
getimagesize(file name) Returns an array containing image information
0=>Width
1=>Height
2=>Type of file
1->gif
2->jpeg
3->png
Equal scaling formula
If (Xinkuka & & & LT; Old High) {
新 = (New high/old high)*Old width
} Else {
新 = (New Width/Old Width/Old Width )*Old height
}
1. According to this formula, under normal circumstances, only the width and height are equal to one of the values, and the other values ​​are smaller than the original values
2. If you don’t need black borders, then just set the canvas to the new width and new height (new width and new height after scaling)
Image watermark
bool imagecopy (target image, watermark image, target x, target y, watermark x, watermark y, watermark width, watermark height) target x, y means that the watermark image is placed at x and y of the target image coordinate. The x and y of the watermark represent the coordinates of the starting point of the watermark image.
Note
When outputting the image, be sure to pay attention to the format of your editor: UTF-8 BOM-free format.

Related recommendations:

Using image processing technology to generate verification codes (Typical Application Tutorial of PHP Graphics and Images 3)

The above is the detailed content of Image processing in php. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles