(image-new
width
height)
(image-load
filename)
(image-show
image)
(image-height
image)
(image-width
image)
(image-get-pixel
image
column
row)
(image-set-pixel!
image
column
row
rgb-color)
(image-transform-pixel!
image
column
row
func)
col,row)
in image by applying
func to its old color and setting that
pixel to the resulting color.
(image-transform!
image
fun)
image in place by setting
each pixel to the result of applying fun to
that current pixel color.
(image-compute-pixels!
image
first-col
first-row
last-col
last-row
function)
function to the position of
the pixel. function must be a function
from position to rgb-color. Warning!
The current version is buggy, and may affect other pixels.