search
HomeBackend DevelopmentPHP TutorialHow to achieve retro effect with php_imagick
How to achieve retro effect with php_imagickMay 31, 2018 pm 02:27 PM
imagickphpmethod

I believe that many people are familiar with php_imagick. This article first briefly introduces php_imagick and simple examples, and then introduces the method of using php_imagick to achieve retro effects through sample code, which is of certain significance to everyone's study and work. For reference value, friends in need can take a look below.

Introduction

php_imagick is a PHP extension that allows PHP to call the ImageMagick function. Using this extension can make PHP have the same functions as ImageMagick .
ImageMagick is a powerful, stable and free toolset and development package that can be used to read, write and process image files in more than 185 basic formats, including popular TIFF, JPEG, GIF, PNG, PDF and PhotoCD and other formats. Using ImageMagick, you can dynamically generate images according to the needs of web applications. You can also change the size, rotate, sharpen, reduce color or add special effects to an image (or a group of images), and save the results in the same format. or save in other formats.

php_imagick program example

1. Create a thumbnail and display it

<?php
header(&#39;Content-type: image/jpeg&#39;);
$image = new Imagick(&#39;image.jpg&#39;);
// If 0 is provided as a width or height parameter,// aspect ratio is maintained
$image->thumbnailImage(100, 0);
echo $image;
?>

2. Create a thumbnail in a directory and save it

<?php
$images = new Imagick(glob(&#39;images/*.JPG&#39;));
foreach($images as $image) {
// Providing 0 forces thumbnailImage to maintain aspect ratio
$image->thumbnailImage(1024,0);
}
$images->writeImages();
?>

3. Thumbnail GIF animated pictures

<?php
/* Create a new imagick object and read in GIF */
$im = new Imagick("example.gif");
/* Resize all frames */
foreach ($im as $frame) {
/* 50x50 frames */
$frame->thumbnailImage(50, 50);
/* Set the virtual canvas to correct size */
$frame->setImagePage(50, 50, 0, 0);
}/* Notice writeImages instead of writeImage */
$im->writeImages("example_small.gif", true);
?>

##How to use php_imagick to achieve retro effects

Let’s take a look at the renderings first

Retro effect display

To achieve the above effects, we first use Photoshop and use the following steps accomplish.

Open the original image


Create a new layer, fill it with the color #C0FFFF, set the opacity to 44%, and set the layer blending mode to Soft Light


Create a new layer, fill it with color #000699, set the opacity to 48%, and set the layer blending mode to exclude


Merge layers


With PHP code, you only need to follow the above steps to implement it. The code is as follows:

//打开图片
$im = new Imagick(&#39;./hebe.jpg&#39;);
//新建图层,使用颜色`#C0FFFF`填充后,不透明度设为`44%`
$layer = new Imagick();
$layer->newImage($im->getImageWidth(), $im->getImageHeight(), &#39;#C0FFFF&#39;);
$layer->setImageOpacity (0.44);
//叠加到原图上,图层混合模式为`柔光`
$im->compositeImage($layer, Imagick::COMPOSITE_SOFTLIGHT, 0, 0);
//新建图层,使用颜色`#000699`填充后,不透明设置为`48%`
$layer = new Imagick();
$layer->newImage($im->getImageWidth(), $im->getImageHeight(), &#39;#000699&#39;);
$layer->setImageOpacity (0.48);
//叠加到原图上,图层混合模式为`排除` 
$im->compositeImage($layer, Imagick::COMPOSITE_EXCLUSION, 0, 0);
//完成!
$im->writeImage(&#39;./vintage.jpg&#39;);

Summary: The above is the summary of this article All content, I hope it will be helpful to everyone's study.

Related recommendations:

php Detailed explanation of the steps to generate images with QR codes and force download

PHP database redis usage and analysis

##How to handle non-form data when PHP Post cannot obtain it


The above is the detailed content of How to achieve retro effect with php_imagick. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
通过php和Imagick实现图片透明化处理通过php和Imagick实现图片透明化处理Jul 29, 2023 am 09:45 AM

通过php和Imagick实现图片透明化处理简介:图片透明化处理是一种常见的图像处理需求,通过将图片中的某个颜色或区域变为透明,可以实现各种特效效果。本文将介绍如何使用php和Imagick库来实现图片透明化处理,并提供代码示例供参考。Imagick是一款功能强大的图片处理库,它提供了丰富的图像处理功能,包括图片的读取、编辑、保存等。通过Imagick,我们

使用php和Imagick实现图片尺寸调整的最佳实践使用php和Imagick实现图片尺寸调整的最佳实践Jul 29, 2023 pm 05:57 PM

使用php和Imagick实现图片尺寸调整的最佳实践引言:在现代互联网时代,图片是网页和应用程序中不可或缺的一部分。为了提升用户体验和加快网页加载速度,通常需要将图片进行尺寸调整,以适应不同的显示设备和分辨率。本文将介绍如何使用php和Imagick库来实现图片尺寸调整的最佳实践,并提供代码示例。一、安装Imagick扩展在开始之前,我们首先需要确保在服务器

通过php和Imagick实现图片的锐化处理通过php和Imagick实现图片的锐化处理Jul 29, 2023 pm 01:33 PM

通过php和Imagick实现图片的锐化处理在现代的图片处理中,锐化是一项常见的技术,它可以提升图片的细节和清晰度,使图片更加生动。在本文中,我们将介绍如何使用php和Imagick库来实现图片的锐化处理。首先,确保你的服务器上已经安装了Imagick库。如果没有安装,你可以通过以下命令来安装:sudoapt-getinstallphp-imagick

使用php和Imagick实现图片的颜色转换使用php和Imagick实现图片的颜色转换Jul 29, 2023 pm 04:49 PM

使用PHP和Imagick实现图片的颜色转换导语:在Web开发中,我们经常需要对图片进行处理,其中一个常见的需求就是修改图片的颜色。本文将介绍如何使用PHP和Imagick扩展来实现图片的颜色转换。Imagick是PHP的一个强大的图像处理扩展,它提供了许多功能丰富的方法,包括图像剪切、缩放、旋转等等。而在颜色转换方面,Imagick也提供了一系列方法来实现

如何使用php和Imagick对图片进行色彩调整如何使用php和Imagick对图片进行色彩调整Jul 28, 2023 pm 01:57 PM

如何使用PHP和Imagick对图片进行色彩调整引言:在Web开发中,有时我们需要对图片进行色彩调整,以满足设计要求或优化图片效果。PHP提供了丰富的图像处理库,其中Imagick是一个功能强大、易于使用的扩展,可以轻松地对图片进行色彩调整。本文将介绍如何使用PHP和Imagick来实现图片的色彩调整,并给出相应的代码示例。一、安装Imagick扩展:要使用

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

使用php和Imagick实现图片的特效处理使用php和Imagick实现图片的特效处理Jul 28, 2023 pm 06:33 PM

使用PHP和Imagick实现图片的特效处理摘要:图片特效处理可以给图片增加一些艺术效果或者改变图片的外观。PHP和Imagick可以实现许多常见的图片特效处理,本文将介绍一些常用的特效处理,并提供相应的代码示例。安装Imagick扩展在开始之前,确保已经安装了Imagick扩展。如果没有安装,可以通过以下步骤进行安装:#安装Imagick扩展$pec

通过php和Imagick实现图片的切片效果通过php和Imagick实现图片的切片效果Jul 29, 2023 am 08:25 AM

通过php和Imagick实现图片的切片效果在web开发中,图片的处理是很常见的需求。其中,图片的切片效果是一种非常常用的处理方式。通过将一张大图切分成若干个小图,可以有效减小图片的加载时间,并且更加灵活地展示图片内容。本文将介绍如何使用php和Imagick扩展来实现图片的切片效果。首先,我们需要确保服务器上已经安装了php以及Imagick扩展。如果没有

See all articles

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

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

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

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor