blend method

Image blend(
  1. Image other,
  2. double alpha
)

Implementation

Image blend(Image other, double alpha) {
  return Image._(ImagingBlend(_inst, other._inst, alpha));
}