1
0

doc.go 371 B

1234567
  1. /*
  2. Package imaging provides basic imaging processing functions (resize, rotate, crop, brightness/contrast adjustments, etc.).
  3. All the image processing functions provided by the package accept any image type that implements image.Image interface
  4. as an input, and return a new image of *image.NRGBA type (32bit RGBA colors, not premultiplied by alpha).
  5. */
  6. package imaging