Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #562
    April Marriner
    Participant

    Can I add this watermark to PDFs? If not, can you add that to your features wishlist? Love it otherwise. Thank you!

    #566
    Bartosz
    Keymaster

    Hi April,

    That’s would be a nice feature, but quite difficult to achieve (we would have to provide an pdf generation option first which might be more time concuming than the watermark itself). But thanks for the suggestion.

    #1649
    Donna Klinton
    Participant

    HI there
    Here is the code for adding watermark to PDF files:
    RasterEdgeImaging text = new RasterEdgeImaging();

    using (Image image= Image.LoadImageFromFile(@”C:\1.pdf”));
    {
    Text text = new Text(text);
    RasterEdgeImaging.Font font = new RasterEdgeImaging.Font(“Times New Roman”, 16, FontStyle.Bold);

    RasterEdgeImaging.Brushes.SolidBrush brush=new RasterEdgeImaging.Brushes.SolidBrush();
    brush.Color=Color.Black;
    brush.Opacity=100;
    text.Data = “copyright”;
    text.CreateWatermark(“watermark”, font, brush, new PointF(image.Width/2, image.Height/2));
    text.Save(@”C:\1-watermark.pdf”);
    }
    Hope to help you.

    #2691
    alina copper
    Participant

    I would like to suggest try SysTools PDF Watermark Software that can easily add watermark of your PDF files.

    #2698
    Bartosz
    Keymaster

    Thank’s for the suggestion Alina.

    But Image Watermark is a free web software, there is no way we can use it in our plugin.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.