|
Applies a color overlay to an image. Colorize takes the given overlay color, breaks it into its component red, green, and blue colors, and then multiplies every pixel in the source image by the color percentage of the overlay color compared to white (255, 255, 255). This has the effect of making a color overlay appear over the original image.
| image | The image to colorize. |
| overlay | The color to colorize the image with. |
A reference to a copy of the changed image. This allows Image actions to be chained together.
|
Outlines an image with one pixel of white. Borderize takes the image, and changes every pixel along the edges of the image to white.
| image | The image to borderize. |
A reference to a copy of the changed image. This allows Image actions to be chained together.
|
Stretches an image to the given width. Taberize takes the given image, finds its center column of pixels, and then stretches the image to fill the given width, filling in all stretched pixels per row with the one pixel in the center column. This has the effect of keeping the ends of the image the same and having a long center section of the same pixels.
| image | The image to taberize. |
| width | The destination width of the image. |
A reference to a copy of the changed image. This allows Image actions to be chained together.
|
|
|