de.digitalcollections.turbojpeg.lib.structs.tjregion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imageio-turbojpeg Show documentation
Show all versions of imageio-turbojpeg Show documentation
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.
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);
}
}