rgb2rgba method

void rgb2rgba(
  1. Pointer<UnsignedChar> rgb,
  2. int width,
  3. int height,
  4. Pointer<UnsignedChar> rgba,
)

Implementation

void rgb2rgba(
  ffi.Pointer<ffi.UnsignedChar> rgb,
  int width,
  int height,
  ffi.Pointer<ffi.UnsignedChar> rgba,
) {
  return _rgb2rgba(
    rgb,
    width,
    height,
    rgba,
  );
}