All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.digitalcollections.turbojpeg.lib.enums.TJSAMP Maven / Gradle / Ivy

Go to download

ImageIO plugin for reading and writing JPEG images via libjpeg-turbo/turbojpeg. Requires the libjpeg-turbo and turbojpeg shared native libraries to be installed on the system.

There is a newer version: 0.6.8
Show newest version
package de.digitalcollections.turbojpeg.lib.enums;

import jnr.ffi.util.EnumMapper.IntegerEnum;

public enum TJSAMP implements IntegerEnum {
  TJSAMP_444(0),
  TJSAMP_422(1),
  TJSAMP_420(2),
  TJSAMP_GRAY(3),
  TJSAMP_440(4);

  private final int val;

  TJSAMP(int val) {
    this.val = val;
  }

  @Override
  public int intValue() {
    return val;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy