/** * */ package at.gv.egiz.pdfas.api.sign.pos; /** * Holds the actual, absolute signature position where a signature was placed. * *

* This is usually returned after signing. *

* * @author wprinz */ public interface SignaturePosition { /** * Returns the page on which the signature was placed. * * @return Returns the page on which the signature was placed. */ public int getPage(); /** * Returns the x position. * * @return Returns the x position. */ public float getX(); /** * Returns the y position. * * @return Returns the y position. */ public float getY(); /** * Returns the width of the signature. * * @return Returns the width of the signature. */ public float getWidth(); /** * Returns the height of the signature. * * @return Returns the height of the signature. */ public float getHeight(); }