Phalcon\Image is the component that allows you to manipulate image files. Multiple operations can be performed on the same image object.
This guide is not intended to be a complete documentation of available methods and their arguments. Please visit the API for a complete reference.
This component makes use of adapters to encapsulate specific image manipulator programs. The following image manipulator programs are supported:
Class | Description |
---|---|
Phalcon\Image\Adapter\Gd | Requires the GD PHP extension. |
Phalcon\Image\Adapter\Imagick | Requires the ImageMagick PHP extension. |
The Phalcon\Image\AdapterInterface interface must be implemented in order to create your own image adapters or extend the existing ones.
Before we begin with the various features of the image component, it’s worth understanding how to save and render these images.
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); // ... // Overwrite the original image $image->save();
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); // ... // Save to 'new-image.jpg' $image->save("new-image.jpg");
You can also change the format of the image:
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); // ... // Save as a PNG file $image->save("image.png");
When saving as a JPEG, you can also specify the quality as the second parameter:
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); // ... // Save as a JPEG with 80% quality $image->save("image.jpg", 80);
There are several modes of resizing:
\Phalcon\Image::WIDTH
\Phalcon\Image::HEIGHT
\Phalcon\Image::NONE
\Phalcon\Image::TENSILE
\Phalcon\Image::AUTO
\Phalcon\Image::INVERSE
\Phalcon\Image::PRECISE
\Phalcon\Image::WIDTH
The height will automatically be generated to keep the proportions the same; if you specify a height, it will be ignored.
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->resize( 300, null, \Phalcon\Image::WIDTH ); $image->save("resized-image.jpg");
\Phalcon\Image::HEIGHT
The width will automatically be generated to keep the proportions the same; if you specify a width, it will be ignored.
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->resize( null, 300, \Phalcon\Image::HEIGHT ); $image->save("resized-image.jpg");
\Phalcon\Image::NONE
The NONE
constant ignores the original image’s ratio. Neither width and height are required. If a dimension is not specified, the original dimension will be used. If the new proportions differ from the original proportions, the image may be distorted and stretched.
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->resize( 400, 200, \Phalcon\Image::NONE ); $image->save("resized-image.jpg");
\Phalcon\Image::TENSILE
Similar to the NONE
constant, the TENSILE
constant ignores the original image’s ratio. Both width and height are required. If the new proportions differ from the original proportions, the image may be distorted and stretched.
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->resize( 400, 200, \Phalcon\Image::NONE ); $image->save("resized-image.jpg");
For example, to get a 100px by 100px square from the centre of the image:
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $width = 100; $height = 100; $offsetX = (($image->getWidth() - $width) / 2); $offsetY = (($image->getHeight() - $height) / 2); $image->crop($width, $height, $offsetX, $offsetY); $image->save("cropped-image.jpg");
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); // Rotate an image by 90 degrees clockwise $image->rotate(90); $image->save("rotated-image.jpg");
You can flip an image horizontally (using the \Phalcon\Image::HORIZONTAL
constant) and vertically (using the \Phalcon\Image::VERTICAL
constant):
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); // Flip an image horizontally $image->flip( \Phalcon\Image::HORIZONTAL ); $image->save("flipped-image.jpg");
The sharpen()
method takes a single parameter - an integer between 0 (no effect) and 100 (very sharp):
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->sharpen(50); $image->save("sharpened-image.jpg");
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $watermark = new \Phalcon\Image\Adapter\Gd("me.jpg"); // Put the watermark in the top left corner $offsetX = 10; $offsetY = 10; $opacity = 70; $image->watermark( $watermark, $offsetX, $offsetY, $opacity ); $image->save("watermarked-image.jpg");
Of course, you can also manipulate the watermarked image before applying it to the main image:
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $watermark = new \Phalcon\Image\Adapter\Gd("me.jpg"); $watermark->resize(100, 100); $watermark->rotate(90); $watermark->sharpen(5); // Put the watermark in the bottom right corner with a 10px margin $offsetX = ($image->getWidth() - $watermark->getWidth() - 10); $offsetY = ($image->getHeight() - $watermark->getHeight() - 10); $opacity = 70; $image->watermark( $watermark, $offsetX, $offsetY, $opacity ); $image->save("watermarked-image.jpg");
The blur()
method takes a single parameter - an integer between 0 (no effect) and 100 (very blurry):
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->blur(50); $image->save("blurred-image.jpg");
The pixelate()
method takes a single parameter - the higher the integer, the more pixelated the image becomes:
$image = new \Phalcon\Image\Adapter\Gd("image.jpg"); $image->pixelate(10); $image->save("pixelated-image.jpg");
© 2011–2017 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/reference/images.html