Создание PDF-файла для автоматической печати

У меня есть ASP.NET веб-приложение, которое генерирует PDF. Я использую iTextSharp. Что происходит, так это то, что вы нажимаете кнопку, и она загружается. Мой работодатель хочет иметь возможность нажать кнопку и открыть ее с помощью диалога печати.

4 ответов


Способ 1: использование встроенного javascript внутри ваших PDF-файлов Вы можете попробовать создать iText PDFAction объект с вызовом javascript this.print(false) (вы можете использовать new PdfAction(PdfAction.PRINTDIALOG) для этого), и связать его с событие OpenAction вашего pdf-файла.

код в iText Java должен выглядеть так:

PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("file.pdf"));
...
PdfAction action = new PdfAction(PdfAction.PRINTDIALOG);
writer.setOpenAction(action);
...

Это не должно быть слишком различным в C#.

в качестве примечания, это также возможно с Amyuni PDF Creator .Net установив для атрибута "AutoPrint" значение TRUE в классе документа (обычно применяется).

acPDFCreatorLib.Initialize();
acPDFCreatorLib.SetLicenseKey("Amyuni Tech.", "07EFCDA00...BC4FB9CFD");
Amyuni.PDFCreator.IacDocument document = pdfCreator1.Document;

// Open a PDF document from file
System.IO.FileStream file1 = new System.IO.FileStream("test_input.pdf", FileMode.Open, FileAccess.Read, FileShare.Read);

IacDocument document = new IacDocument(null);

if (document.Open(file1, ""))
{
    //Set AutoPrint
    document.Attribute("AutoPrint").Value = true;

    //Save the document
    System.IO.FileStream file2 = new System.IO.FileStream("test_output.pdf", System.IO.FileMode.Create, System.IO.FileAccess.Write);
    document.Save(file2, Amyuni.PDFCreator.IacFileSaveOption.acFileSaveView);
}

// Disposing the document before closing the stream clears out any data structures used by the Document object
document.Dispose();

file1.Close();

// terminate library to free resources
acPDFCreatorLib.Terminate();

этот подход требует, чтобы файл PDF был открыт в считывателе, который будет заботиться о печати, и у него есть недостаток, что если файл сохраняется локально, каждый раз, когда файл открывается позже, он покажет диалоговое окно печати.

Способ 2: использование javascript из браузера для связи с читателем это показывает файл.
Я нашел этот другой подход в это так вопрос, который стоит попробовать:

<html>
<script language="javascript">
timerID = setTimeout("exPDF.print();", 1000);
</script>
<body>
<object id="exPDF" type="application/pdf" data="111.pdf" width="100%" height="500"/>
</body>
</html>

идея состоит в том, чтобы использовать javascript в браузере, чтобы поручить читателю PDF распечатать файл. Этот подход будет работать с PDF-файлами, встроенными в HTML-страницу.


другое решение на этом сайте... Я использую это решение и отлично работают

У меня есть поток PDF из Crystal report, и я добавляю openaction с pdfsharp

ссылка : http://www.vo1dmain.info/pdfsharp-howto-inject-javascript-into-pdf-autoprinting-functionality#comments

public static MemoryStream AddAutoPrint(Stream pdfStream, bool ShowPrintDialog = true, int NumCopies = 1)
{
  PdfSharp.Pdf.PdfDocument doc = PdfSharp.Pdf.IO.PdfReader.Open(pdfStream, PdfSharp.Pdf.IO.PdfDocumentOpenMode.Import);
  PdfSharp.Pdf.PdfDocument outputDocument = new PdfSharp.Pdf.PdfDocument();

  for (int idx = 0; idx < doc.PageCount; idx++)
  {
    PdfSharp.Pdf.PdfPage p = doc.Pages[idx];
    outputDocument.AddPage(p);
  }

  outputDocument.Info.Author = "author name";

  string JSScript = string.Empty;
  JSScript += "var pp = this.getPrintParams(); ";

  if(NumCopies > 0)
  {
    JSScript += "pp.NumCopies = " + NumCopies.ToString() + "; ";
  }

  if(!ShowPrintDialog)
  {
     JSScript += "pp.interactive = pp.constants.interactionLevel.automatic; ";
  }


  JSScript += "this.print({printParams: pp}); ";


  PdfSharp.Pdf.PdfDictionary dictJS = new PdfSharp.Pdf.PdfDictionary();
  dictJS.Elements["/S"] = new PdfSharp.Pdf.PdfName("/JavaScript");
  //dictJS.Elements["/JS"] = new PdfSharp.Pdf.PdfStringObject(outputDocument, "print(true);");
  //dictJS.Elements["/JS"] = new PdfSharp.Pdf.PdfStringObject(outputDocument, "this.print({bUI: false, bSilent: true, bShrinkToFit: true});");
  //dictJS.Elements["/JS"] = new PdfSharp.Pdf.PdfStringObject(outputDocument, "var pp = this.getPrintParams(); pp.NumCopies = 2; pp.interactive = pp.constants.interactionLevel.automatic; this.print({printParams: pp});");
  dictJS.Elements["/JS"] = new PdfSharp.Pdf.PdfStringObject(outputDocument, JSScript);


  outputDocument.Internals.AddObject(dictJS);

  PdfSharp.Pdf.PdfDictionary dict = new PdfSharp.Pdf.PdfDictionary();
  PdfSharp.Pdf.PdfArray a = new PdfSharp.Pdf.PdfArray();
  dict.Elements["/Names"] = a;
  a.Elements.Add(new PdfSharp.Pdf.PdfString("EmbeddedJS"));
  a.Elements.Add(PdfSharp.Pdf.Advanced.PdfInternals.GetReference(dictJS));

  outputDocument.Internals.AddObject(dict);

  PdfSharp.Pdf.PdfDictionary group = new PdfSharp.Pdf.PdfDictionary();
  group.Elements["/JavaScript"] = PdfSharp.Pdf.Advanced.PdfInternals.GetReference(dict);

  outputDocument.Internals.Catalog.Elements["/Names"] = group;

  MemoryStream ms = new MemoryStream();

  outputDocument.Save(ms, false);

  return ms;
}

Как упоминалось yms, вы можете создать PDF, который имеет JavaScript или" именованное " действие PDF, которое показывает диалоговое окно печати при открытии документа. Мы продемонстрировали это с помощью нашего продукта Gnostice PDFOne .NET в статье создать автоматическую печать PDF. Думаю, вы могли бы сделать то же самое в iText. Если Adobe Reader зарегистрирован как PDF плагин в браузере, то оба варианта будут работать.

HTML Javascript опция, кажется, работает только в ТО ЕСТЬ.

отказ от ответственности: я работаю на Gnostice.


Как насчет старой доброй моды Оле? Он по-прежнему поддерживается большинством всех слоев документов, о которых я знаю... В C# я обычно делаю что-то подобное.. где PDF, RTF, DOC, XLS... не вопрос... они все печатают..

public void HandlePresentation(string fullFilePath, bool viewOnScreen, bool autoPrint)
{
    ProcessStartInfo info = new ProcessStartInfo(fullFilePath);
    if (autoPrint)
    {
        info.Verb = "Print";
        info.WindowStyle = ProcessWindowStyle.Hidden; // not normally required
        Process.Start(info);
        info.Verb = string.Empty;
    }

    if (viewOnScreen)
    {
        info.WindowStyle = ProcessWindowStyle.Normal;
        Process.Start(info);
    }
}