I have this PDF file that I have generated with OpenHTMLtoPDF
.
string html = "<html><body><h1>TEST</h1></body></html>";
var pdf = Pdf.From(html).OfSize(size);
byte[] content = pdf.Content();
However, I cannot figure out how to save it to the disk. There appears to not be a method to save to the hard drive.