Examples of PdfFilter


Examples of com.lowagie.tools.arguments.filters.PdfFilter

  /**
   * Constructs an NUp object.
   */
  public NUp() {
    menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW;
    arguments.add(new FileArgument(this, "srcfile", "The file you want to N-up", false, new PdfFilter()));
    arguments.add(new FileArgument(this, "destfile", "The resulting PDF", true, new PdfFilter()));
    OptionArgument oa = new OptionArgument(this, "pow2", "The number of pages you want to copy to 1 page");
    oa.addOption("2", "1");
    oa.addOption("4", "2");
    oa.addOption("8", "3");
    oa.addOption("16", "4");
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

     */
    public Add3D() {
        super();
        FileArgument inputfile = new FileArgument(this, "srcfile",
                                                  "The file you want to add the u3d File", false,
                                                  new PdfFilter());
        arguments.add(inputfile);
        FileArgument u3dinputfile = new FileArgument(this, "srcu3dfile",
                "The u3d file you want to add", false,
                new U3DFilter());
        arguments.add(u3dinputfile);
        destfile = new FileArgument(this, "destfile",
                                    "The file that contains the u3d Annotation after processing",
                                    true, new PdfFilter());
        arguments.add(destfile);
        inputfile.addPropertyChangeListener(destfile);
    }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

  /**
   * Constructs a DvdCover object.
   */
  public DvdCover() {
    menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW | MENU_EXECUTE_PRINT;
    arguments.add(new FileArgument(this, "destfile", "The file to which the PDF has to be written", true, new PdfFilter()));
    arguments.add(new StringArgument(this, "title", "The title of the DVD", String.class.getName()));
    arguments.add(new StringArgument(this, "backgroundcolor", "The backgroundcolor of the DVD Cover (for instance 0xFFFFFF)", Color.class.getName()));
    arguments.add(new ImageArgument(this, "front", "The front image of the DVD Cover"));
    arguments.add(new ImageArgument(this, "back", "The back image of the DVD Cover"));
    arguments.add(new ImageArgument(this, "side", "The side image of the DVD Cover"));
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

  /**
   * Constructs an TreeViewPDF object.
   */
  public TreeViewPDF() {
    inputfile = new FileArgument(this, "srcfile", "The file you want to inspect", false,
        new PdfFilter());
    inputfile.setLabel(new PdfInformationPanel());
    arguments.add(inputfile);
  }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

   * Constructs an Divide object.
   */
  public Divide() {
    menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW;
    arguments.add(new FileArgument(this, "srcfile",
        "The file you want to divide", false, new PdfFilter()));
    arguments.add(new FileArgument(this, "destfile", "The resulting PDF",
        true, new PdfFilter()));
  }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

  /**
   * Constructs an InpectPDF object.
   */
  public InspectPDF() {
    arguments.add(new FileArgument(this, "srcfile", "The file you want to inspect", false, new PdfFilter()));
    arguments.add(new StringArgument(this, "ownerpassword", "The owner password if the file is encrypt", String.class.getName()));
  }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

   */
  public RemoveLaunchApplication() {
    menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW;
    arguments.add(new FileArgument(this, "srcfile",
                                   "The file from which you want to remove Launch Application actions", false,
                                   new PdfFilter()));
    arguments.add(new FileArgument(this, "destfile",
                                   "The file to which the cleaned up version of the original PDF has to be written", true,
                                   new PdfFilter()));
  }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

  /**
   * Constructs a Concat object.
   */
  public Concat() {
    menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW;
    arguments.add(new FileArgument(this, "srcfile1", "The first PDF file", false, new PdfFilter()));
    arguments.add(new FileArgument(this, "srcfile2", "The second PDF file", false, new PdfFilter()));
    arguments.add(new FileArgument(this, "destfile", "The file to which the concatenated PDF has to be written", true, new PdfFilter()));
  }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

  /**
   * Constructs an Bookmarks2XML object.
   */
  public Bookmarks2XML() {
    arguments.add(new FileArgument(this, "pdffile", "the PDF from which you want to extract bookmarks", false, new PdfFilter()));
    arguments.add(new FileArgument(this, "xmlfile", "the resulting bookmarks file in XML", true));
  }
View Full Code Here

Examples of com.lowagie.tools.arguments.filters.PdfFilter

   * Constructs a Tiff2Pdf object.
   */
  public Tiff2Pdf() {
    menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW;
    arguments.add(new FileArgument(this, "srcfile", "The file you want to convert", false, new ImageFilter(false, false, false, false, false, true)));
    arguments.add(new FileArgument(this, "destfile", "The file to which the converted TIFF has to be written", true, new PdfFilter()));
    OptionArgument oa = new OptionArgument(this, "pagesize", "Pagesize");
    oa.addOption("A4", "A4");
    oa.addOption("Letter", "LETTER");
    oa.addOption("Original format", "ORIGINAL");
    arguments.add(oa);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.