Adding WaterMarks For PDF files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • madumm
    New Member
    • Jan 2007
    • 18

    Adding WaterMarks For PDF files

    Hi all;

    I want to add watermarks for PDF files. I have found a class called "PdfFileSta mp" to do that. Inorder to do that have to import "com.aspose.pdf .kit.PdfFileSta mp" for that how can i do it??

    How can i import the class "PdfFileSta mp", from where can i find it.

    Need HELP!!

    Regards
    Madumm
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by madumm
    Hi all;

    I want to add watermarks for PDF files. I have found a class called "PdfFileSta mp" to do that. Inorder to do that have to import "com.aspose.pdf .kit.PdfFileSta mp" for that how can i do it??

    How can i import the class "PdfFileSta mp", from where can i find it.

    Need HELP!!

    Regards
    Madumm
    Do you have one class file PdfFileStamp or a package with directory structure com.aspose.pdf. kit.PdfFileStam p?

    Comment

    • madumm
      New Member
      • Jan 2007
      • 18

      #3
      Originally posted by r035198x
      Do you have one class file PdfFileStamp or a package with directory structure com.aspose.pdf. kit.PdfFileStam p?


      hi

      Yes have a package? How can i get that package and how to add it??

      Madumm

      Comment

      • r035198x
        MVP
        • Sep 2006
        • 13225

        #4
        Originally posted by madumm
        hi

        Yes have a package? How can i get that package and how to add it??

        Madumm
        import the package into your classes. Make sure the files are in the correct directories eg if you have a class A in package a then put A into a folder named a then in your code write
        Code:
        import a.*;
        or
        Code:
        import a.A;

        Comment

        Working...