Package org.pdfbox.pdmodel.interactive.digitalsignature

Examples of org.pdfbox.pdmodel.interactive.digitalsignature.PDSignature


     *
     * @return The signature.
     */
    public PDSignature getSignature()
    {
        PDSignature signature = null;
        COSDictionary sig = (COSDictionary)catalog.getDictionaryObject( "Sig" );
        if( sig != null )
        {
            signature = new PDSignature( sig );
        }
        return signature;
    }
View Full Code Here

TOP

Related Classes of org.pdfbox.pdmodel.interactive.digitalsignature.PDSignature

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.