Hello.
I am trying to convert an image to pdf, and have followed your documentation. The conversion works as expected, but I get a small watermark in the left corner saying this is an evaluation version. I have included a picture of the watermark.
I have used the code from here: http://www.aspose.com/docs/display/pdfnet/Convert+an+Image+to+PDF
In the constructor I have placed the following code:
Dim pdfLicenseStream As Stream = New MemoryStream(My.Resources.Aspose_Total)
Dim pdfLicense As New Aspose.Pdf.License()
pdfLicense.SetLicense(pdfLicenseStream)
pdfLicenseStream.Dispose()
Dim pdfLicense As New Aspose.Pdf.License()
pdfLicense.SetLicense(pdfLicenseStream)
pdfLicenseStream.Dispose()
This seems to work fine on all other operations.
What have I done wrong?