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

de.digitalcollections.turbojpeg.lib.enums.TJXOP 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 TJXOP implements IntegerEnum {
  TJXOP_NONE(0),
  TJXOP_HFLIP(1),
  TJXOP_VFLIP(2),
  TJXOP_TRANSPOSE(3),
  TJXOP_TRANSVERSE(4),
  TJXOP_ROT90(5),
  TJXOP_ROT180(6),
  TJXOP_ROT270(7);

  private int val;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy