com.idrsolutions.image.tiff.Tile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenViewerFX Show documentation
Show all versions of OpenViewerFX Show documentation
An Open Source JavaFX PDF Viewer
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.idrsolutions.image.tiff;
/**
*
* @author suda
*/
public class Tile {
public int x;
public int y;
public int width;
public int height;
public byte[] data;
}