Image processing process. The function traverses the picture, giving the input delegate a pointer to the color and traversal position in the form of a vector.
Image processing.
Function processing.
// Darkening the picture in the corners. myImage.process((ref e, position) { e = e * (position.x / myImage.width * position.y / myImage.height); });
See Implementation
Image processing process. The function traverses the picture, giving the input delegate a pointer to the color and traversal position in the form of a vector.