web-dev-qa-db-ja.com

自動的に印刷するPDF

PDFを生成するASP.NETWebアプリケーションがあります。私はiTextSharpを使用しています。ボタンをクリックするとダウンロードされます。私の雇用主は、ボタンをクリックして、印刷ダイアログで開くことができるようにしたいと考えています。

11
Joe Tyman

方法1:PDFファイル内に埋め込まれたJavaScriptを使用する iText PDFAction = javascript呼び出しを持つオブジェクトthis.print(false)(これにはnew PdfAction(PdfAction.PRINTDIALOG)を使用できます)、それをpdfファイルの OpenActionイベント に関連付けます。

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を使用して、ファイルを表示するリーダーと通信します。
この他のアプローチを このSO 質問で見つけました。

<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リーダーに指示することです。このアプローチは、HTMLページに埋め込まれたPDFファイルで機能します。

12
yms

このサイトの別のソリューション...私はこのソリューションを使用し、うまく機能します

PDF Crystalレポートからのストリームがあり、pdfsharpでopenactionを追加します

リンク: 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;
}
4
solexD

Ymsで述べたように、JavaScriptを含むPDF、またはドキュメントを開いたときに印刷ダイアログを表示する「名前付き」PDFアクション」を生成できます。記事で当社の製品GnosticePDFOne .NETを使用してこれを実証しました 自動印刷PDFを作成 。iTextでも同じことができると思います。AdobeReaderがPDFブラウザのプラグインの場合、両方のオプションが機能します。

HTMLJavascriptオプションはIEでのみ機能するようです。

免責事項:私はGnosticeで働いています。

3
BZ1

ITextSharpで行う:

PdfDocument = pdfDoc = new Document(PageSize.LETTER);
// create and open the new pdf document for writing
FileStream fspdfDoc = new FileStream(pdfDocFileName, FileMode.Create, 
FileAccess.ReadWrite);
PdfWriter pdfW = PdfWriter.GetInstance(pdfDoc, fspdfDoc);
pdfDoc.Open();
pdfW.AddJavaScript(PdfAction.JavaScript("this.print(true);\r", pdfW));
2
BrianK

古き良きファッションOLEはどうですか?それは私が知っているほとんどすべてのドキュメントレイヤーでまだサポートされています... 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);
    }
}
0
3Wiggle