PixelFormat.java (303B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 package org.jpeg.jpegxl.wrapper; 7 8 public enum PixelFormat { 9 RGBA_8888, // 0 10 RGBA_F16, // 1 11 RGB_888, // 2 12 RGB_F16 // 3 13 }