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

org.monte.media.tiff.FileSegment Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
/*
 * @(#)FileSegment.java  1.0  2010-07-25
 * 
 * Copyright (c) 2010 Werner Randelshofer, Goldau, Switzerland.
 * All rights reserved.
 *
 * You may not use, copy or modify this file, except in compliance with the
 * license agreement you entered into with Werner Randelshofer.
 * For details see accompanying license terms.
 */
package org.monte.media.tiff;

/**
 * Holds offset and length of a TIFF file segment.
 * 

* In a JPEG JFIF stream, a TIFF file can be segmented over multiple APP * markers. * * @author Werner Randelshofer * @version 1.0 2010-07-25 Created. */ public class FileSegment { private long offset; private long length; public FileSegment(long offset, long length) { this.offset = offset; this.length = length; } public long getLength() { return length; } public long getOffset() { return offset; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy