2017年2月19日日曜日

C#で直接印刷

C#で直接印刷

C#の直接印刷で手こずっていましたが、ghostscript.net で解決。

つかうもの。itextsharp, ghostscript.net そして、Adobe Illustrator cs2です。
itextsharp,ghostscript.net はそれぞれ NuGet にあるのでインストールしておきます。

1 Illustratorでテンプレートを作成


Adobe Illustratorで下地となるテンプレートを作成。
単位、座標をitextsharpと一致させます。
単位:ポイント
座標:左下 (「定規」を表示して左下に座標設定)
    Illustratorなのでかなり意匠の凝った印刷物が作成可。
    レイヤーでプログラムに使う座標なども作成しておくと便利。
最後に不必要なレイヤーを非表示にして「複製を保存」でpdfファイルを作成。

2 itextsharp


作成されたpdfファイルにコンテンツを追加していきます。
文字もグリッド用の線もすべて PdfContentByte で位置固定。

サンプル

  1. using System.IO;
  2. using iTextSharp.text;
  3. using iTextSharp.text.pdf;
  4.  
  5. {
  6.  
  7. string filePaht="";
  8. var template1 = new PdfReader(filePath);
  9. var doc = new Document(PageSize.A4.Rotate());
  10. FileStream fs = null;
  11. fs = new FileStream(fileName, FileMode.Create, FileAccess.Write, FileShare.ReadWrite);
  12. var writer = PdfWriter.GetInstance(doc, fs);
  13. doc.Open();
  14.  
  15. //row.Count枚数の印刷物
  16. foreach(DataRow row in table)
  17.  
  18. {
  19. var page1 = writer.GetImportedPage(template1, 1);
  20. doc.NewPage();
  21. var pcd1 = writer.DirectContent;
  22. pcd1.AddTemplate(page1, 0, 0);
  23. AddContents(writer, row);
  24. }
  25. doc.Close();
  26. fs.Close();
  27. template1.Close();
  28. }
  29.  
  30. //DataRowのコンテンツを追加します
  31.  
  32. private void AddContents(PdfWriter writer, DataRow row)
  33. {
  34. var cb = writer.DirectContent;
  35. var bf = BaseFont.CreateFont(@"c:\windows\fonts\msgothic.ttc,0", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
  36. //
  37. float x0=***f,y0=***f;
  38. float w0=***f,h0=***f;
  39. DrawTextAligned(cb, bf, 11f, row.Field<string>(1), new PointF(x0, y0), Element.ALIGN_LEFT);
  40. //
  41. DrawTextCell(cb, bf, 10f, r1[2].ToString(), new PointF(x0,y0), new SizeF(w0, h0), Element.ALIGN_LEFT);
  42. //直線
  43. DrawLine(cb, new PointF(x0, y0), new SizeF(w0, 0.0f), 0.5f, Color.Black.ToArgb());
  44. }
  45. //文字列一行
  46. private static void DrawTextAligned(PdfContentByte cb, BaseFont bf, float fSize, string s, PointF xy, int alignment = Element.ALIGN_LEFT, int argb = -16777216)
  47. {
  48. if (s == "") return;
  49. cb.BeginText();
  50. BaseColor bc = new BaseColor(argb);
  51. cb.SetColorFill(bc);
  52. cb.SetFontAndSize(bf, fSize);
  53. cb.ShowTextAligned(alignment, s, xy.X, xy.Y,0.0f);
  54. cb.EndText();
  55. }
  56.  
  57. //文字列 複数行
  58. private static void DrawTextCell(PdfContentByte cb, BaseFont bf, float fontSize, string s, PointF xy, SizeF wh, int alignment = Element.ALIGN_LEFT,int arb=-16777216)
  59. {
  60. ColumnText col = new ColumnText(cb);
  61. var font = new iTextSharp.text.Font(bf, fontSize);
  62. Color color = Color.FromArgb(argb);
  63. font.SetColor(color.R, color.G, color.B);
  64. col.SetSimpleColumn(new Phrase(s, font), xy.X, xy.Y, xy.X + wh.Width, xy.Y + wh.Height, fontSize, alignment);
  65. col.Go();
  66. }
  67. //直線
  68. private static void DrawLine(PdfContentByte cb, PointF xy, SizeF wh, float lineWidth = 0.5f, int argb = -16777216)
  69. {
  70. BaseColor bc = new BaseColor(argb);
  71. cb.MoveTo(xy.X, xy.Y);
  72. cb.LineTo(xy.X + wh.Width, xy.Y+ wh.Height);
  73. cb.SetLineWidth(lineWidth);
  74. cb.SetColorStroke(bc);
  75. cb.ClosePathStroke();
  76. }
  77. //塗りつぶし矩形
  78. private static void DrawFillRect(PdfContentByte cb, PointF xy,SizeF wh, int argb)
  79. {
  80. BaseColor c=new BaseColor(argb);
  81. cb.SetColorFill(c);
  82. cb.Rectangle( xy.X, xy.Y,wh.Width,wh.Height);
  83. cb.Fill();
  84. }

ライン、文字列の関数はすべて ( x=左 y=下 w=幅, h=高さ )を変数に作成してありますが、これはIllastrator の「ウィンドウ> 変形」のXYWHと一致させるためです。Illastratorの「変形」の値を参照しながら位置を設定していきます。もし、Illastratorのオブジェクトの名前と位置をテキストにエクスポート出来ることができれば、もっと簡便に設定できるのですが。。

また、Illastrator「変形」の基準ポイント(9点)の 左、中央、右はitextsharpのElement.ALIGN_LEFT,Element.ALIGN_CENTER,Element.ALIGN_RIGHTに相当します。たとえば、Element.ALIGN_RIGHTだと xは右側が基準です。同様にElement.ALIGN_CENTERの場合は中央が基準です。

3 ghostscript.net


ghostscript.netで直接印刷します。
ghostscript.netにはプレビュー用のフォームのサンプルもあるのでビュアーも作成可能。 Acrobat Readerよりはずっと早い。

サンプルコード

  1. using Ghostscript.NET;
  2. using Ghostscript.NET.Viewer;
  3. using Ghostscript.NET.Processor;
  4.  
  5. var pd = new System.Drawing.Printing.PrintDocument();
  6. string printerName = pd.PrinterSettings.PrinterName;
  7. string inputFile = ””;
  8.  
  9. using (GhostscriptProcessor processor = new GhostscriptProcessor())
  10. {
  11. List<string> switches = new List<string>();
  12. switches.Add("-empty");
  13. switches.Add("-dPrinted");
  14. switches.Add("-dBATCH");
  15. switches.Add("-dNOPAUSE");
  16. switches.Add("-dNOSAFER");
  17. switches.Add("-dNumCopies=1"); //部数
  18. switches.Add("-sDEVICE=mswinpr2");
  19. switches.Add("-sPAPERSIZE=a4");
  20. //横指定A4
  21. //switches.Add("-dDEVICEWIDTHPOINTS=842");
  22. //switches.Add("-dDEVICEHEIGHTPOINTS=595");
  23. //両面印刷
  24. //switches.Add("-dDuplex");//TrueON,false=off
  25. //switches.Add("-dTumble=true");//True=短辺綴じ false=長辺綴じ
  26. switches.Add("-sOutputFile=%printer%" + printerName);
  27. switches.Add("-f");
  28. switches.Add(inputFile);
  29. processor.StartProcessing(switches.ToArray(), null);
  30. }

いままで印刷は、PrintDocumentクラスを使用したり、xpsを用いたりと四苦八苦していたのですが、Ghostscriptで簡単に行けそうです。あぁ無料。



0 件のコメント :

コメントを投稿