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

de.digitalcollections.turbojpeg.lib.structs.tjregion 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.structs;

import jnr.ffi.Runtime;
import jnr.ffi.Struct;

public class tjregion extends Struct {
  public Signed32 x = new Signed32();
  public Signed32 y = new Signed32();
  public Signed32 w = new Signed32();
  public Signed32 h = new Signed32();

  protected tjregion(Runtime runtime) {
    super(runtime);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy