module Effect:sig..end
val translate : Image.RGBA32.t -> int -> int -> unitTranslate image.
val affine : Image.RGBA32.t -> float -> float -> int -> int -> unitApply an affine transformation to an image.
val flip : Image.RGBA32.t -> unitFlip (mirror across horizontal axis).
val greyscale : Image.RGBA32.t -> unitConvert to greyscale.
val sepia : Image.RGBA32.t -> unitConvert to sepia colors.
val lomo : Image.RGBA32.t -> unitLomo effect on colors (see http://en.wikipedia.org/wiki/Lomo_effect ).
val invert : Image.RGBA32.t -> unitInvert colors.
val rotate : Image.RGBA32.t -> float -> unitRotate image by a given angle (in radians).
val mask : Image.RGBA32.t -> Image.RGBA32.t -> unit
val box_blur : Image.RGBA32.t -> unit
module Alpha:sig..end
Effects on alpha channel.