libjxl

FORK: libjxl patches used on blog
git clone https://git.neptards.moe/blog/libjxl.git
Log | Files | Refs | Submodules | README | LICENSE

StreamInfo.java (433B)


      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 /** POJO that wraps some fields of JxlBasicInfo. */
      9 public class StreamInfo {
     10   public Status status;
     11   public int width;
     12   public int height;
     13   public int alphaBits;
     14 
     15   // package-private
     16   int pixelsSize;
     17   int iccSize;
     18 }