ImageResize()
Resizes an image.
Requires Extension: Image Extension for Jakarta EE (Lucee 7+)
ImageResize( image=any, width=string, height=string, interpolation=string, blurFactor=number );
Returns: void
| Argument | Description | Default |
|---|---|---|
|
image
any,
required
|
edit
The image on which this operation is performed. Alias: name |
|
|
width
string,
required
|
edit
New width of the image. If this value is blank, the width is calculated proportionately to the height. |
|
|
height
string,
optional
|
edit
New height of the image. If this value is blank, the height is calculated proportionately to the width. |
|
|
interpolation
string,
optional
|
edit
the interpolation method for resampling. You can specify a specific interpolation algorithm by name (for example, hamming), by image quality (for example, mediumQuality), or by performance (for example, highestPerformance). Valid values are:
|
automatic |
|
blurFactor
number,
optional
|
edit
The blur factor used for resampling. The higher the blur factor, the more blurred the image (also, the longer it takes to resize the image). Valid values are 0-10. |
1 |
Examples
editimg=imageNew("",800,1200,"RGB","2d98da");
imageresize(img, "20%","100");
cfimage(action="writeToBrowser",source=img);
See also
- Image manipulation
- image.resize()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)