Home Backend Development PHP Tutorial Explore PHP dynamic image creation techniques_PHP tutorial

Explore PHP dynamic image creation techniques_PHP tutorial

Jul 15, 2016 pm 01:33 PM
php under create dynamic image Will Skill Discuss yes of detailed

Creating dynamic images with PHP is quite easy. Below, the author will introduce in detail how to achieve it.

Before using basic image creation functions, you need to install the GD library file. If you want to use the image creation functions related to JPEG, you also need to install jpeg-6b, and if you want to use Type 1 fonts in your images, you must install t1lib.

Before establishing the image creation environment, some preparations need to be done. First, install t1lib, then install jpeg-6b, and then install the GD library file. During installation, you must install it in the order given here, because jpeg-6b will be used when compiling GD and storing it in the library. If jpeg-6b is not installed, an error will occur during compilation.

After installing these three components, you still need to reconfigure PHP. This is one of the reasons why you are glad to use DSO to install PHP. Run make clean, and then add the following content to the current PHP dynamic image creation configuration:

--with-gd=[/path/to/gd]

--with- jpeg-dir=[/path/to/jpeg-6b]

--with-t1lib=[/path/to/t1lib]

After completing the addition, execute the make command, and then execute Make install command, restart Apache and run phpinfo() to check whether the new settings have taken effect. Now, we can start the image creation work.

Depending on the version of the GD library file installed will determine whether you can create graphic files in GIF or PNG format. If you install gd-1.6 or a previous version, you can use GIF format files but cannot create PNG files. If you install a gd-1.6 or later version, you can create PNG files but cannot create GIF format files.

Creating a simple image also requires the use of many functions, which we will explain step by step.

In the following PHP dynamic image creation example, we will create an image file in PNG format. The following code is a header containing the MIME type of the created image:

Use ImageCreate() creates a variable representing a blank image. This function requires a parameter of the image size in pixels, in the format ImageCreate(x_size, y_size). If you want to create an image of size 250×250, you can use the following statement:

$newImg = ImageCreate(250,250);

Since the image is still blank, you may want Fill it with some color. You need to first assign a name to this color using its RGB value using the ImageColorAllocate() function. The format of this function is ImageColorAllocate([image], [red], [green], [blue]). If you want to define sky blue, you can use the following statement:

$skyblue = ImageColorAllocate($newImg,136,193,255);

Next, you need to use the ImageFill() function to fill this with this color For images, there are several versions of the ImageFill() function, such as ImageFillRectangle(), ImageFillPolygon(), etc. For simplicity, we use the ImageFill() function in the following format:

ImageFill([image], [start x point], [start y point], [color])

ImageFill ($newImg,0,0,$skyblue);

Finally, release the image handle and the memory occupied after the image is created:

<ol class="dp-xml">
<li class="alt"><span><span>ImagePNG($newImg);  </span></span></li>
<li>
<span>ImageDestroy($newImg); </span><span class="tag">?></span><span> </span>
</li>
</ol>
Copy after login

In this way, the entire code for PHP dynamic image creation is as follows:

<ol class="dp-xml">
<li class="alt"><span><span class="attribute">$newImg</span><span> = </span><span class="attribute-value">ImageCreate</span><span>(250,250);  </span></span></li>
<li>
<span>$</span><span class="attribute">skyblue</span><span> = </span><span class="attribute-value">ImageColorAllocate<br></span><span>($newImg,136,193,255);  </span>
</li>
<li class="alt"><span>ImageFill($newImg,0,0,$skyblue);  </span></li>
<li><span>ImagePNG($newImg);  </span></li>
<li class="alt"><span>ImageDestroy($newImg);  </span></li>
<li>
<span class="tag">?></span><span> </span>
</li>
</ol>
Copy after login

If we save this script file as skyblue.php and access it with a browser, we You will see a sky blue 250×250 PNG format image.

We can also use the image creation function to process images, such as making a larger image into a smaller image:

Suppose you have an image and want to crop it into a 35×35 size image. All you need to do is create a 35×35 blank image, create an image stream containing the original image, and then place a resized version of the original image into the new blank image.

The key function to complete this task is ImageCopyResized(), which requires the following format:

ImageCopyResized([new image handle],[original image handle],[new image X], [new Image Y], [original image X], [original image Y], [new image X], [new image Y], [original image X], [original image Y]).

<ol class="dp-xml">
<li class="alt"><span><span>header('Content-type: image/png');  </span></span></li>
<li>
<span>$</span><span class="attribute">newWidth</span><span> = </span><span class="attribute-value">35</span><span>;  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">newHeight</span><span> = </span><span class="attribute-value">35</span><span>;  </span>
</li>
<li>
<span>$</span><span class="attribute">newImg</span><span> = </span><span class="attribute-value">ImageCreate</span><span>($newWidth,$newHeight);  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">origImg</span><span> = </span><span class="attribute-value">ImageCreateFromPNG</span><span>('test.png');  </span>
</li>
<li><span>ImageCopyResized($newImg,$origImg,0,<br>0,0,0,$newWidth,$newHeight,ImageSX<br>($origImg),ImageSY($origImg));  </span></li>
<li class="alt"><span>ImagePNG($newImg);  </span></li>
<li>
<span>ImageDestroy($newImg); </span><span class="tag">?></span><span> </span>
</li>
</ol>
Copy after login

If you save this small script as resized.php and then access it with a browser, you will see a 35×35 PNG format image , so far the PHP dynamic image creation is completed.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446044.htmlTechArticlePHP dynamic image creation is quite easy. Below, the author will introduce in detail how to achieve it. Before using basic image creation functions, you need to install the GD library file. If you want to use...
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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.

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 ?

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 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.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles