Creates a PDF file.
Sample:
String pdfHtml = "<html><body><p>Words go here.</p></body></html>" PdfFile pdf = Pdf.Create("Name.pdf", pdfHtml);
Creates a PDF file from a URI address.
UriAddress uri = UriAddress.Parse("https://www.google.com"); PdfFile pdf = Pdf.CreateFromWeb("Name.pdf", uri);