You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi arsoftinformatica.
I have fixed some bug and added the print function based on the origal PdfiumViewer project.
If you want to ues it in your project, that will be help. #20
Hello, I'm sending a code that I found in the stackoverflow to print the document in pdf, if you can implement this option, thank you.
public bool PrintPDF(PdfDocument document , string printer, string paperName, string filename, int copies)
{
try
{
// Create the printer settings for our printer
var printerSettings = new PrinterSettings
{
PrinterName = printer,
Copies = (short)copies,
};
var ret = PrintPDF(Renderer.Document,"Microsoft Print to PDF", "A4", dialog.FileName, 1);
The text was updated successfully, but these errors were encountered: