Add WaterMark To PDF using VB.NET
-
Friday, November 14, 2008 4:20 AM
- Add Reference of iTextSharp.dll
-
btnAddWaterMark_Click is a button name.
-
AddWatermarkImage is a method name.
-
Enter Input File's Path in input
-
Enter Output File's Path in output
-
Enter Image's Path in water
-
Help ?? pandya.naimish@yahoo.com
-
Good Luck.
Private Sub btnAddWaterMark_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAddWaterMark.Click
Dim input As String
Dim output As String Dim water As String If txtPath.Text = "" Or txtimgpath.Text = "" Or txtoutpath.Text = "" ThenMessageBox.Show(
"Please Enter Required Data", "Required Data Missing") Elseinput = txtPath.Text
water = txtimgpath.Text
output = txtoutpath.Text
AddWatermarkImage(input, output, water)
End If End Sub Public Shared Sub AddWatermarkImage(ByVal sourceFile As String, ByVal outputFile As String, ByVal watermarkImage As String) Dim reader As iTextSharp.text.pdf.PdfReader = Nothing Dim stamper As iTextSharp.text.pdf.PdfStamper = Nothing Dim img As iTextSharp.text.Image = Nothing Dim underContent As iTextSharp.text.pdf.PdfContentByte = Nothing Dim rect As iTextSharp.text.Rectangle = Nothing Dim X, Y As Single Dim pageCount As Integer = 0 Try If System.IO.File.Exists(sourceFile) Thenreader =
New iTextSharp.text.pdf.PdfReader(sourceFile)rect = reader.GetPageSizeWithRotation(1)
stamper =
New iTextSharp.text.pdf.PdfStamper(reader, New System.IO.FileStream(outputFile, IO.FileMode.Create))img = iTextSharp.text.Image.GetInstance(watermarkImage)
If img.Width > rect.Width OrElse img.Height > rect.Height Thenimg.ScaleToFit(rect.Width, rect.Height)
X = (rect.Width - img.ScaledWidth) / 2
Y = (rect.Height - img.ScaledHeight) / 2
ElseX = (rect.Width - img.Width) / 2
Y = (rect.Height - img.Height) / 2
End Ifimg.SetAbsolutePosition(X, Y)
pageCount = reader.NumberOfPages()
For i As Integer = 1 To pageCountunderContent = stamper.GetUnderContent(i)
underContent.AddImage(img)
Nextstamper.Close()
reader.Close()
ElseMessageBox.Show(
"File Does Not Exist", "Missing File") End If Catch ex As Exception Throw ex End Try End Sub
All Replies
-
Wednesday, May 11, 2011 5:34 PM
hi;
could you please help to change code to do watermaking in commandline so then it can used for batch operation similar to commercial softwares such as ParmisPDF software?
thanks a lot
-
Tuesday, May 17, 2011 8:36 AMReally thanks. I was long time ago trying to add my watermark in every pdf file, but VB is great. In every werbeartikel offer I have to send never have align the watermark but with this sequency I think it make it!!
-
Monday, August 20, 2012 4:48 PMHow about a redo using Asp.Net?
Edward R. Joell MCSD MCDBA


