
org.openpdf.renderer.annotation.SquareAnnotation 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 for a square
*
* @author Bernd Rosstauscher
****************************************************************************/
public class SquareAnnotation extends MarkupAnnotation {
// TODO Not all of this is fully implemented yet.
// But it will work if the visual representation is done via an "Appearance Stream"
/*************************************************************************
* Constructor
* @param annotObject
* @throws IOException
************************************************************************/
public SquareAnnotation(PDFObject annotObject) throws IOException {
super(annotObject, AnnotationType.SQUARE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy