Returns:
-
WOOF_Image
An image object representing the resized image.
A highly useful method to resize an image, and cache the result in the image cache. Has the ability to crop, stretch, or fill the image to fit a certain width and height, or specify just a single dimension to resize the other dimension proportionally.
Parameters:
-
An arguments array or string supporting the following parameters:
- c => Whether the image should be cropped to fit the dimensions given (only applicable when BOTH dimensions are given). If you don’t crop, the image may contain whitespace to fill the shorter dimension. This can be either 0 (don’t crop), 1 (crop to trim where necessary), or 2 (crop WITHOUT rescaling to the height and width, but also trimmed of whitespace). default 1
- w => The width to resize to – default 0 (i.e. unspecified)
- h => The height to resize to – default 0 (i.e. unspecified)
- q => The image quality to use for JPEG images – default 85
- ca => The location to crop from (crop anchor) when cropping is required – default 0 (unspecified), but can be
- L = Left (Middle)
- TL = Top-Left
- BL = Bottom-Left
- R = Right (Middle)
- TR = Top-Right
- BR = Bottom-Right
- T = Top (Center)
- B = Bottom (Center)
- C = Center
- iar => whether to ignore the aspect ratio and simply squash or stretch the image, without cropping or whitespace – default 0 (false)
- up => whether to allow UPsizing of an image – default 1 (true)
- co => An x,y offset to the crop anchor. default “0,0”