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

org.openpdf.renderer.annotation.FreetextAnnotation Maven / Gradle / Ivy

The newest version!
package org.openpdf.renderer.annotation;

import java.io.IOException;

import org.openpdf.renderer.PDFObject;

/*****************************************************************************
 * PDF annotation describing a free text
 * Currently only supports the XObjects which can be found in the path AP->N
 * of the annotation object (same implementation as the stamp annotation) 
 * @author Katja Sondermann
 * @since 28.03.2012
 ****************************************************************************/
public class FreetextAnnotation extends MarkupAnnotation {
	
	/*************************************************************************
	 * Constructor
	 * @param annotObject
	 * @throws IOException 
	 ************************************************************************/
	public FreetextAnnotation(PDFObject annotObject) throws IOException {
		super(annotObject, AnnotationType.FREETEXT);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy