@return ImageInfo with ColorType#N32
(int width, int height, @NotNull ColorAlphaType alphaType)
| 40 | * @return ImageInfo with {@link ColorType#N32} |
| 41 | */ |
| 42 | @NotNull @Contract("_, _, _ -> new") |
| 43 | public static ImageInfo makeN32(int width, int height, @NotNull ColorAlphaType alphaType) { |
| 44 | return new ImageInfo(new ColorInfo(ColorType.N32, alphaType, null), width, height); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * @return ImageInfo with {@link ColorType#N32} |