Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 30, 2022 01:56 pm

Resize and Manipulate Images in PHP (With Examples)


In my previous tutorial, we discussed basic image manipulation using the PHP GD library. In that tutorial, I gave a brief introduction to the library and showed you how to load images from a file or create them from scratch in PHP. After that, we learned how to crop, rotate, scale and flip an image using GD. I covered the imagefilter() function to apply different filters to image resources loaded in the script. I also mentioned some useful functions in GD like imagesx() and imagesy() to get the width and height of the loaded image.



By the end of my last GD tutorial, you learned how to use the library to automate basic tasks like resizing all images in a directory or applying filters like grayscale on them before saving the final result. If you have never used the PHP GD library before, I would suggest that you go through that GD introductory article before reading this one.


In this tutorial, we will learn about many more useful functions in GD and how they can be used to automate more of our image manipulation tasks.



Manipulating Images Using a Convolution Matrix


Except for the pixels at the edges, every pixel in an image is surrounded by eight other pixels. Effects like blurring or edge detection are calculated for each pixel depending on that pixel's value and the values of the surrounding pixels. In edge detection, for example, a sharp change in color implies that we have reached the edge of some object in the image. For instance, a sudden change from white to brown in the image below will signify the boundary of the cup and the table.


An easy way to specify this kind of filter is with what is called a "convolution matrix". GD supplies the imageconvolution( $image, $matrix, $div, $offset) function to apply a 3x3 convolution matrix to an image resource $image.


The $matrix parameter is an array of three arrays, each of which contains three float values—i.e. it is a 3x3 matrix. The first element of the first array is multiplied by the color value of the top-left pixel. Similarly, the second element of the first array is multiplied by the color value of the pixel directly on top of the central pixel. The final color of the pixel is obtained by adding the result of all these multiplications and then dividing it by $div for normalization. Normalization generally keeps the final color value below 255.


As we've seen, the $div parameter is used as a divisor for the result of convolution to normalize its value. The $offset parameter, on the other hand, is used to specify an offset value for all colors. You will see how it affects the final result in the examples below.



Convolution Examples


Here is a list of some different convolution matrices that we have applied to the image of a cup on a table.


Box Blur



Box blur works by just averaging each pixel with its neighbors. We set the value of the divisor to 9 because the sum of all elements in the three arrays is 9.


Sharpen



Sharpen works by exaggerating the differences between each pixel and its neighbors. This makes the edges a bit clearer. In the case of sharpen, the divisor is still 1 because the sum of all the elements in the three arrays is 1.


Emboss



The emboss matrix is similar to the sharpen matrix, except that the values are negative to the upper left and positive to the lower right—that's what creates the emboss effect. The sum of all the elements in the case of the emboss convolution matrix is 1, so we don't have to worry about normalization or color offset.


Edge Detect



Edge detection is similar to sharpen, but the effect is even stronger. Also, the original value of the image is given no more weight than the neighbors—that means we only care about the edges, not the original solid colored areas.


With edge detection, the sum of all the array elements is 0. This means that the image we will get will mostly be black unless there is a sharp change in color, which generally occurs at the edges of objects. The mostly black image can be turned to white by setting the offset parameter to 255.


The following image shows the result of all these convolution matrices.




Image Copy Functions


PHP GD has a lot of functions to copy part of an image and then resize or merge it. When using these functions, it is important to remember that PHP considers the top-left corner of an image resource as its origin. A positive x value will take you to the right of the image, and a positive y value will take you further down.


The simplest of these functions is imagecopy( $dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h). It will copy the source image onto a destination image. The $dst_x and $dst_y parameters determine the top-left corner, where the copied image will be pasted. The $src_x, $src_y, $src_w, and $src_h parameters determine the rectangular portion of the source image, which will be copied to the destination.


You can use this function to crop images by creating an image from scratch using imagecreatetruecolor() and copying the crop rectangle of the source image into it. You can also use it to add watermarks on images, but you have to remember that with this method, the size of the watermark cannot be changed according to the size of our images.


One solution to this problem is to use the imagecopyresized( $dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h) function. It accepts all the parameters of imagecopy() and two additional parameters to determine the size of the destination area where the source image will be copied.


The imagecopyresized() function is not perfect, as it does not scale the image up and down very well. However, you can get better quality resizing using the imagecopyresampled() function, which accepts all the same parameters.



Copy With Transparency


There are two more functions related to copying images which you will find very useful: imagecopymerge() and imagecopymergegray().


The function imagecopymerge( $dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct) is similar to imagecopy(), where the additional $pct parameter determines the transparency of the copied image. A value of 0 means no transparency, and a value of 100 means complete transparency. This will be of great help when you don't want to completely hide the content of the main image behind your watermark.


The imagecopymergegray() function, on the other hand, uses the last parameter to convert the source image to grayscale. If it's set to 0, the source image will lose all its color. If it's set to 100, the source image will remain unaffected.



Image Copy Example


The following example uses the imagecopy() function to turn the right half of an image into its negative. We have already discussed other functions like imagefilter() and imagescale() used in this code snippet in the previous tutorial.



Here, we create two copies of the original image, each of which has been scaled down to be 800 pixels wide. After that, we use the imagefilter() function to create a negative of the $img_php_inv image resource. The right half of this negative image is then copied onto the original image using the imagecopy() function.


This was a very basic use of the imagecopy() function. You can see the results below. You could also divide the image into smaller sections or stripes to create more interesting image effects. We will use the imagecopymergegray() function in the code snippet below to create a lot more stripes in the original fish image.



The above code example uses a similar strategy to the previous example, but this time we have divided the image into smaller stripes, which are turned to grayscale or kept unchanged based on the value of the variable $i. After completing all the copy merge operations, we apply two filters on the image to make the stripes stand out.


The following image shows the final result of these two functions in conjunction with different image filters.




Base64 Encoding and Decoding of Images


When working with images, you are likely to come across situations where the image data needs to be either decoded from Base64 format or encoded into it. There are no direct functions in the GD library to accomplish this task. However, you can use some other PHP functions to do this easily.


There are no functions in PHP GD that will return image data. However, functions like imagejpeg(), imagepng(), and imagegif() are able to output the image to a browser or file. We can capture their output using some output control functions like ob_get_contents(). Here is an example to convert a JPEG image into Base64 data.



First we get a new image object from our image file using the imagecreatefromjpeg() function. After that, we use the ob_start() function to turn on output buffering. The imagejpeg() function then outputs the raw image stream since we did not pass a file name as the second parameter. This captured data is then stored in the $image_data variable using ob_get_contents() which returns the content of the output buffer. The raw image data is then converted into Base64 format by using the base64_encode() function.


PHP GD comes with a function called imagecreatefromstring() which will create a new image from the image stream in the given string. Lets say you have the image data in a Base64 encoded string. You can use the following code to save it as an image file using PHP.



We begin by decoding the Base64 string with the help of base64_decode() to get back the original image data stream. This stream is then passed to the imagecreatefromstring() function to get back our image. After that, you can simply use the imagejpeg() function to save the image as a JPEG file.



Embedding Watermarks or Other Information in Images


Some organizations add watermarks to their images in order to make it clear that they own the image. It also helps with brand recognition and discourages other people from blatantly copying the images. Thanks to PHP GD, watermarking images is a straightforward task.



In the above code snippet, we have created two different image resources using imagecreatefromjpeg() for the main image and imagecreatefrompng() for the watermark respectively. We determine the width and height of the main image using the imagesx() and imagesy() functions.


Not all images that you want to watermark will have the same dimensions. If you don't resize the watermark based on the dimensions of the main image, it could look weird. For example, a 200px watermark might look good on a 1000px image, but it will be too large for a 600px wide image, and it might look too small on a 2400px wide image.


Therefore, we use the imagescale() function to always keep the watermark at one-fifth of the original image width. We then use the imagecopy() function to place the watermark in the right location. Here is the final result of the above code snippet.



Besides watermarks, you can also add other information like the place where a photograph was taken or the time a photograph was taken.



Final Thoughts


After covering the basics of image manipulation in our previous tutorial, we learned about a few other useful functions in the GD library. The first part of the tutorial discussed how we can manipulate images in PHP using the convolution matrix. I also showed some examples of the convolution matrix operation to help you understand how PHP arrives at the color values of different pixels.


The second part of the tutorial explained how to copy and/or resize part of an image to paste it somewhere else. This is handy when we want to add something to an image like a watermark or a timestamp.


Try to use all these functions to create some interesting image effects!



Original Link: https://code.tutsplus.com/tutorials/php-gd-image-manipulation-beyond-the-basics--cms-31766

Share this article:    Share on Facebook
View Full Article

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code