Class | PImage | ||||||
---|---|---|---|---|---|---|---|
Name | resize() |
||||||
Examples | // @pjs preload must be used to preload the image /* @pjs preload="jelly.jpg"; */ PImage img = loadImage("jelly.jpg"); image(img, 0, 0); img.resize(100, 50); image(img, 0, 0) // @pjs preload must be used to preload the image /* @pjs preload="jelly.jpg"; */ PImage img = loadImage("jelly.jpg"); image(img, 0, 0); img.resize(0, 50); image(img, 0, 0); |
||||||
Description | Resize the image to a new width and height. To make the image scale proportionally, use 0 as the value for the wide or high parameter. |
||||||
Syntax | img.resize(wide,high) |
||||||
Parameters |
|
||||||
Returns | void | ||||||
Usage | Web & Application | ||||||
Related | get() |