| Server IP : 68.178.247.200 / Your IP : 216.73.216.110 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/self/root/opt/alt/libharu/usr/share/libharu/bindings/vb.net/demo/ |
Upload File : |
Imports HPdf
Module Encryption
Sub Main()
Const owner_passwd As String = "owner"
Const user_passwd As String = "user"
Const text As String = "This is an encrypt document example."
Console.WriteLine("libhpdf-" + HPdfDoc.HPdfGetVersion())
Try
Dim pdf As HPdfDoc = New HPdfDoc()
' create default-font
Dim font As HPdfFont = pdf.GetFont("Helvetica", Nothing)
' add a new page object.
Dim page As HPdfPage = pdf.AddPage()
page.SetSize(HPdfPageSizes.HPDF_PAGE_SIZE_B5, HPdfPageDirection.HPDF_PAGE_LANDSCAPE)
page.BeginText()
page.SetFontAndSize(font, 20)
Dim tw As Single = page.TextWidth(text)
page.MoveTextPos((page.GetWidth() - tw) / 2, (page.GetHeight() - 20) / 2)
page.ShowText(text)
page.EndText()
pdf.SetPassword(owner_passwd, user_passwd)
' save the document to a file
pdf.SaveToFile("Encryption.pdf")
Catch ex As Exception
Console.Error.WriteLine(ex.Message)
End Try
End Sub
End Module