com.cete.dynamicpdf.pageelements.barcoding
Class IssnSup5



Example : The following example will place an ISSN, 5 digit supplement barcode on the page.
   import com.cete.dynamicpdf.*;
   import com.cete.dynamicpdf.pageelements.*;
 
   public class MyClass {
     public static void main(String args[]) {
         // Create a PDF Document
         Document document = new Document();
           
         // Create a Page and add it to the document
         Page page = new Page();
         document.getPages().add(page);
 
         // Create a barcode
         IssnSup5 barCode = new IssnSup5("979-0-1234-5678", "12345", 50, 50);
 
         // Add the barcode to the page
         page.getElements().add(barCode); 
 
         // Save the PDF
         document.draw("[Physicalpath]/MyDocument.pdf" );
      }
    }