


How to use PHP to achieve the black and white effect of pictures
How to use PHP to achieve the black and white effect of pictures
The processing of pictures is very important in many Web applications. Converting color pictures to black and white effects is a common need, which not only increases the artistic sense of the pictures, but also adapts to some specific design requirements. In this article, we will introduce how to use PHP to achieve the black and white effect of pictures.
1. Using PHP’s GD library
PHP’s GD library is an image processing library that can be used to perform various operations on images, including cropping, scaling, watermarking, etc. . Before using it, we need to make sure that the GD library has been installed on our server. We can check the installation of the GD library through the following code:
<?php // 检查GD库是否已经安装 if (!extension_loaded('gd') && !function_exists('gd_info')) { echo 'GD库未安装,无法继续操作!'; exit; } // 获取GD库的版本信息 $gd_info = gd_info(); echo 'GD库版本:' . $gd_info['GD Version']; ?>
If the output GD library version information is empty, it means that the GD library is not installed.
2. Open the picture file
Before we begin, we need to open a color picture and then convert it to black and white. We can use the imagecreatefromjpeg
function of the GD library to open a JPEG format image. The following is the sample code:
<?php // 打开一张图片 $src_image = imagecreatefromjpeg('example.jpg'); ?>
The example.jpg
here is the image file we actually use, which needs to be replaced with your own image path.
3. Convert to black and white effect
To convert a color picture into a black and white effect, we can achieve this by modifying the RGB value of each pixel. Take the average of the three RGB components, and then assign this average to the RGB component of the pixel to convert the color image into a black and white effect. The following is a sample code:
<?php // 获取图片的宽度和高度 $width = imagesx($src_image); $height = imagesy($src_image); // 创建一个新的黑白图片 $dst_image = imagecreatetruecolor($width, $height); // 遍历每个像素进行转换 for ($x = 0; $x < $width; $x++) { for ($y = 0; $y < $height; $y++) { // 获取像素的RGB值 $rgb = imagecolorat($src_image, $x, $y); $r = ($rgb >> 16) & 0xFF; // 获取红色分量 $g = ($rgb >> 8) & 0xFF; // 获取绿色分量 $b = $rgb & 0xFF; // 获取蓝色分量 // 计算RGB的平均值 $gray = round(($r + $g + $b) / 3); // 将平均值赋给像素的RGB分量 $new_rgb = imagecolorallocate($dst_image, $gray, $gray, $gray); // 设置新的像素值 imagesetpixel($dst_image, $x, $y, $new_rgb); } } ?>
4. Save black and white pictures
After completing the conversion of black and white effects, we can use the imagejpeg
function to save the black and white pictures to a file. The following is the sample code:
<?php // 保存黑白图片 imagejpeg($dst_image, 'example_bw.jpg'); ?>
The example_bw.jpg
here is the file path to save the black and white image, which can be modified according to the actual situation.
5. Complete sample code
<?php // 打开一张图片 $src_image = imagecreatefromjpeg('example.jpg'); // 获取图片的宽度和高度 $width = imagesx($src_image); $height = imagesy($src_image); // 创建一个新的黑白图片 $dst_image = imagecreatetruecolor($width, $height); // 遍历每个像素进行转换 for ($x = 0; $x < $width; $x++) { for ($y = 0; $y < $height; $y++) { // 获取像素的RGB值 $rgb = imagecolorat($src_image, $x, $y); $r = ($rgb >> 16) & 0xFF; // 获取红色分量 $g = ($rgb >> 8) & 0xFF; // 获取绿色分量 $b = $rgb & 0xFF; // 获取蓝色分量 // 计算RGB的平均值 $gray = round(($r + $g + $b) / 3); // 将平均值赋给像素的RGB分量 $new_rgb = imagecolorallocate($dst_image, $gray, $gray, $gray); // 设置新的像素值 imagesetpixel($dst_image, $x, $y, $new_rgb); } } // 保存黑白图片 imagejpeg($dst_image, 'example_bw.jpg'); // 销毁图片资源 imagedestroy($src_image); imagedestroy($dst_image); ?>
6. Summary
Using PHP’s GD library can easily achieve the black and white effect of images. We can easily convert a color image to black and white by opening the image, iterating through the pixels and modifying the RGB values, and finally saving the modified image. The above are the steps and sample code for using PHP to achieve black and white effects on images. Hope this helps!
The above is the detailed content of How to use PHP to achieve the black and white effect of pictures. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

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

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

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

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

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

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

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

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