Image

Type
Class
Namespace
craft\helpers
Inherits
craft\helpers\Image
Since
3.0.0

Class Image

View source (opens new window)

# Public Methods

Method Description
calculateMissingDimension() Calculates a missing target dimension for an image.
canHaveExifData() Returns whether an image can have EXIF information embedded.
canManipulateAsImage() Returns whether an image extension is considered manipulatable.
cleanExifDataFromImagickImage() Clean EXIF data from an image loaded inside an Imagick instance, taking care not to wipe the ICC profile.
cleanImageByPath() Clean an image provided by path from all malicious code and the like.
imageSize() Returns the size of an image based on its file path.
imageSizeByStream() Determines image dimensions by a stream pointing to the start of the image.
isWebSafe() Returns whether an extension is web-safe.
parseSvgSize() Parses SVG data and determines its size (normalized to pixels).
pngImageInfo() Returns any info that’s embedded in a given PNG file.
targetDimensions() Returns the target image width and height for an image, based on its transform type and constraints, and whether the source image should be upscaled.
webSafeFormats() Returns a list of web-safe image formats.

# calculateMissingDimension()

Calculates a missing target dimension for an image.

View source (opens new window)

Arguments

Returns

integer (opens new window)[] – Array of the width and height.

# canHaveExifData()

Returns whether an image can have EXIF information embedded.

View source (opens new window)

Arguments

Returns

boolean (opens new window)

# canManipulateAsImage()

Returns whether an image extension is considered manipulatable.

View source (opens new window)

Arguments

Returns

boolean (opens new window)

# cleanExifDataFromImagickImage()

Clean EXIF data from an image loaded inside an Imagick instance, taking care not to wipe the ICC profile.

View source (opens new window)

Arguments

  • $imagick (\Imagick)

# cleanImageByPath()

Clean an image provided by path from all malicious code and the like.

View source (opens new window)

Arguments

# imageSize()

Returns the size of an image based on its file path.

View source (opens new window)

Arguments

Returns

array (opens new window) – [width, height]

# imageSizeByStream()

Determines image dimensions by a stream pointing to the start of the image.

View source (opens new window)

Arguments

Returns

array (opens new window), false (opens new window)

Throws

# isWebSafe()

Since
3.7.63

Returns whether an extension is web-safe.

View source (opens new window)

Arguments

Returns

boolean (opens new window)

# parseSvgSize()

Parses SVG data and determines its size (normalized to pixels).

View source (opens new window)

Arguments

Returns

array (opens new window) – [width, height]

# pngImageInfo()

Returns any info that’s embedded in a given PNG file.

Adapted from https://github.com/ktomk/Miscellaneous/tree/master/get_png_imageinfo.

View source (opens new window)

Arguments

Returns

array (opens new window), boolean (opens new window) – Info embedded in the PNG file, or false if it wasn’t found.

# targetDimensions()

Since
3.7.55

Returns the target image width and height for an image, based on its transform type and constraints, and whether the source image should be upscaled.

View source (opens new window)

Arguments

Returns

integer (opens new window)[]

# webSafeFormats()

Returns a list of web-safe image formats.

View source (opens new window)

Returns

string (opens new window)[]

# Constants

Constant Description
EXIF_IFD0_ROTATE_180
EXIF_IFD0_ROTATE_270
EXIF_IFD0_ROTATE_90