NRGBA64 is a data structure in the Go programming language that represents an image with 64-bit color channels in the RGBA color model, where each channel (red, green, blue, and alpha) is represented by a 16-bit unsigned integer. It is commonly used for handling high-resolution images with more precise color information. The N in NRGBA64 indicates that the alpha channel is not premultiplied by the color channels, allowing for more flexible blending and transparency effects. This data structure provides methods and functions in the Go image package to manipulate and process images with 64-bit color depth.
Golang NRGBA64 - 18 examples found. These are the top rated real world Golang examples of image.NRGBA64 extracted from open source projects. You can rate examples to help us improve the quality of examples.