
org.openpdf.renderer.annotation.FreetextAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpdf-renderer Show documentation
Show all versions of openpdf-renderer Show documentation
PDF renderer implementation supporting the subset of PDF 1.4 specification.
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