interface ImageInterface implements ManipulatorInterface
The image interface
Constants
RESOLUTION_PIXELSPERINCH |
|
RESOLUTION_PIXELSPERCENTIMETER |
|
Methods
ManipulatorInterface |
copy()
Copies current source image into a new ImageInterface instance |
from ManipulatorInterface |
ManipulatorInterface |
crop(PointInterface $start, BoxInterface $size)
Crops a specified box out of the source image (modifies the source image) Returns cropped self |
from ManipulatorInterface |
ManipulatorInterface |
resize(BoxInterface $size)
Resizes current image and returns self |
from ManipulatorInterface |
ManipulatorInterface |
rotate(integer $angle, Color $background = null)
Rotates an image at the given angle. |
from ManipulatorInterface |
ManipulatorInterface |
paste(ImageInterface $image, PointInterface $start)
Pastes an image into a parent image Throws exceptions if image exceeds parent image borders or if paste operation fails |
from ManipulatorInterface |
ManipulatorInterface |
save(string $path, array $options = array())
Saves the image at a specified path, the target file extension is used to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are supported |
from ManipulatorInterface |
ManipulatorInterface |
show(string $format, array $options = array())
Outputs the image content |
from ManipulatorInterface |
ManipulatorInterface |
flipHorizontally()
Flips current image using horizontal axis |
from ManipulatorInterface |
ManipulatorInterface |
flipVertically()
Flips current image using vertical axis |
from ManipulatorInterface |
ManipulatorInterface |
strip()
Remove all profiles and comments |
from ManipulatorInterface |
ManipulatorInterface |
thumbnail(BoxInterface $size, string $mode = self::THUMBNAIL_INSET)
Generates a thumbnail from a current image Returns it as a new image, doesn't modify the current image |
from ManipulatorInterface |
ManipulatorInterface |
applyMask(ImageInterface $mask)
Applies a given mask to current image's alpha channel |
from ManipulatorInterface |
ManipulatorInterface |
fill(FillInterface $fill)
Fills image with provided filling, by replacing each pixel's color in the current image with corresponding color from FillInterface, and returns modified image |
from ManipulatorInterface |
string |
get(string $format, array $options = array())
Returns the image content as a binary string |
|
string |
__toString()
Returns the image content as a PNG binary string |
|
DrawerInterface |
draw()
Instantiates and returns a DrawerInterface instance for image drawing |
|
EffectsInterface | effects() | |
BoxInterface |
getSize()
Returns current image size |
|
ImageInterface |
mask()
Transforms creates a grayscale mask from current image, returns a new image, while keeping the existing image unmodified |
|
array |
histogram()
Returns array of image colors as Imagine\Image\Color instances |
|
Color |
getColorAt(PointInterface $point)
Returns color at specified positions of current image |
|
LayersInterface |
layers()
Returns the image layers when applicable. |
Details
in ManipulatorInterface at line 37
public ManipulatorInterface
copy()
Copies current source image into a new ImageInterface instance
in ManipulatorInterface at line 51
public ManipulatorInterface
crop(PointInterface $start, BoxInterface $size)
Crops a specified box out of the source image (modifies the source image) Returns cropped self
in ManipulatorInterface at line 62
public ManipulatorInterface
resize(BoxInterface $size)
Resizes current image and returns self
in ManipulatorInterface at line 76
public ManipulatorInterface
rotate(integer $angle, Color $background = null)
Rotates an image at the given angle.
Optional $background can be used to specify the fill color of the empty
area of rotated image.
in ManipulatorInterface at line 94
public ManipulatorInterface
paste(ImageInterface $image, PointInterface $start)
Pastes an image into a parent image Throws exceptions if image exceeds parent image borders or if paste operation fails
Returns source image
in ManipulatorInterface at line 108
public ManipulatorInterface
save(string $path, array $options = array())
Saves the image at a specified path, the target file extension is used to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are supported
in ManipulatorInterface at line 120
public ManipulatorInterface
show(string $format, array $options = array())
Outputs the image content
in ManipulatorInterface at line 129
public ManipulatorInterface
flipHorizontally()
Flips current image using horizontal axis
in ManipulatorInterface at line 138
public ManipulatorInterface
flipVertically()
Flips current image using vertical axis
in ManipulatorInterface at line 147
public ManipulatorInterface
strip()
Remove all profiles and comments
in ManipulatorInterface at line 160
public ManipulatorInterface
thumbnail(BoxInterface $size, string $mode = self::THUMBNAIL_INSET)
Generates a thumbnail from a current image Returns it as a new image, doesn't modify the current image
in ManipulatorInterface at line 169
public ManipulatorInterface
applyMask(ImageInterface $mask)
Applies a given mask to current image's alpha channel
in ManipulatorInterface at line 180
public ManipulatorInterface
fill(FillInterface $fill)
Fills image with provided filling, by replacing each pixel's color in the current image with corresponding color from FillInterface, and returns modified image
at line 40
public string
get(string $format, array $options = array())
Returns the image content as a binary string
at line 49
public string
__toString()
Returns the image content as a PNG binary string
at line 56
public DrawerInterface
draw()
Instantiates and returns a DrawerInterface instance for image drawing
at line 61
public EffectsInterface
effects()
at line 68
public BoxInterface
getSize()
Returns current image size
at line 76
public ImageInterface
mask()
Transforms creates a grayscale mask from current image, returns a new image, while keeping the existing image unmodified
at line 83
public array
histogram()
Returns array of image colors as Imagine\Image\Color instances
at line 94
public Color
getColorAt(PointInterface $point)
Returns color at specified positions of current image
at line 104
public LayersInterface
layers()
Returns the image layers when applicable.