This interface has to implemented by ezcImageFilters classes to support thumbnail filters.
Source for this file: /ImageConversion/src/interfaces/thumbnail.php
Version: | //autogentag// |
public void |
croppedThumbnail(
$width
, $height
)
Creates a thumbnail, and crops parts of the given image to fit the range best. |
public void |
filledThumbnail(
$width
, $height
, [ $color
= array()] )
Creates a thumbnail, and fills up the image to fit the given range. |
Creates a thumbnail, and crops parts of the given image to fit the range best.
This filter creates a thumbnail of the given image. The image is scaled down, keeping the original ratio and keeping the image larger as the given range, if necessary. Overhead for the target range is cropped from both sides equally.
If you are looking for a filter that just resizes your image to thumbnail size, you should consider the ezcImageGeometryFilters::scale() filter.
Name | Type | Description |
---|---|---|
$width |
int | Width of the thumbnail. |
$height |
int | Height of the thumbnail. |
Creates a thumbnail, and fills up the image to fit the given range.
This filter creates a thumbnail of the given image. The image is scaled down, keeping the original ratio and scaling the image smaller as the given range, if necessary. Overhead for the target range is filled with the given color on both sides equally.
The color is defined by the following array format (integer values 0-255):
If you are looking for a filter that just resizes your image to thumbnail size, you should consider the ezcImageGeometryFilters::scale() filter.
Name | Type | Description |
---|---|---|
$width |
int | Width of the thumbnail. |
$height |
int | Height of the thumbnail. |
$color |
array | Fill color. |