2016-10-24 35 views
0

我正在嘗試將我們的日常打印作業之一自動化。使用Crystal Reports和PDF進行自動打印

在舊VBA程序... 我們正在創建的水晶報表,抓一個8 1/2×11 PDF,然後抓住一個11×17 PDF

程序然後以連續順序打印這些。它們都被髮送到同一臺打印機,但11 x 17 pdf使用另一個專門用於紙張尺寸的驅動程序。這兩個PDF格式都是用Adobe打印並打印的。

我們現在試圖在C#中做同樣的事情,除非沒有脫殼。還有兩個驅動程序爲打印機設置,我一直試圖直接發送原始數據給他們,但我仍然有一個問題...

11 x 17 pdfs不是「真」11 x 17(有時12.8 x 18.4等)。這會導致打印機停止打印(甚至出現脫機),直到您從物理打印機中選擇一個紙盤並單擊開始。

我已經和司機玩過了,相信司機不是問題,但是這個方案是怪罪。我試圖使用WINSPOOL來完成這個過程,但不知道這是否是approach.`

namespace WorkOrderMass.Helper 
{ 
public class RawPrinterHelper 
    {[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] 
     public class DOCINFOA 
     { 
      [MarshalAs(UnmanagedType.LPStr)] 
      public string pDocName; 
      [MarshalAs(UnmanagedType.LPStr)] 
      public string pOutputFile; 
      [MarshalAs(UnmanagedType.LPStr)] 
      public string pDataType; 
     } 
     [DllImport("winspool.Drv", EntryPoint = "OpenPrinterA", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
     public static extern bool OpenPrinter([MarshalAs(UnmanagedType.LPStr)] string szPrinter, out IntPtr hPrinter, IntPtr pd); 

     [DllImport("winspool.Drv", EntryPoint = "ClosePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
     public static extern bool ClosePrinter(IntPtr hPrinter); 

     [DllImport("winspool.Drv", EntryPoint = "StartDocPrinterA", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
     public static extern bool StartDocPrinter(IntPtr hPrinter, Int32 level, [In, MarshalAs(UnmanagedType.LPStruct)] DOCINFOA di); 

    [DllImport("winspool.Drv", EntryPoint = "EndDocPrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
    public static extern bool EndDocPrinter(IntPtr hPrinter); 

     [DllImport("winspool.Drv", EntryPoint = "StartPagePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
     public static extern bool StartPagePrinter(IntPtr hPrinter); 

     [DllImport("winspool.Drv", EntryPoint = "EndPagePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
    public static extern bool EndPagePrinter(IntPtr hPrinter); 

     [DllImport("winspool.Drv", EntryPoint = "WritePrinter", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] 
     public static extern bool WritePrinter(IntPtr hPrinter, IntPtr pBytes, Int32 dwCount, out Int32 dwWritten); 


    // SendBytesToPrinter() 
    // When the function is given a printer name and an unmanaged array 
    // of bytes, the function sends those bytes to the print queue. 
    // Returns true on success, false on failure. 
    public static bool SendBytesToPrinter(string szPrinterName, IntPtr pBytes, Int32 dwCount) 
    { 
     Int32 dwError = 0, dwWritten = 0; 
     IntPtr hPrinter = new IntPtr(0); 
     DOCINFOA di = new DOCINFOA(); 
     PrinterSettings ps = new PrinterSettings(); 
     bool bSuccess = false; // Assume failure unless you specifically succeed. 

     di.pDocName = "PDF Document"; 
     di.pDataType = "RAW"; 

     PrintDocument pd = new PrintDocument(); 
     pd.DefaultPageSettings.PaperSize = new PaperSize("PaperA3", 840, 1180); 
     pd.Print(); 


     // Open the printer. 
     if (OpenPrinter(szPrinterName.Normalize(), out hPrinter, IntPtr.Zero)) 
     { 
      // Start a document. 
      if (StartDocPrinter(hPrinter, 1, di)) 
      { 
       // Start a page. 
       if (StartPagePrinter(hPrinter)) 
       { 
        // Write your bytes. 
        bSuccess = WritePrinter(hPrinter, pBytes, dwCount, out dwWritten); 
        System.Threading.Thread.Sleep(5000); 
        EndPagePrinter(hPrinter); 
       } 
       EndDocPrinter(hPrinter); 
      } 
      ClosePrinter(hPrinter); 
     } 
     // If you did not succeed, GetLastError may give more information 
     // about why not. 
     if (bSuccess == false) 
     { 
      dwError = Marshal.GetLastWin32Error(); 
     } 
     return bSuccess; 
    } 

    public static bool SendFileToPrinter(string szPrinterName, string szFileName) 
    { 
     // Open the file. 
     bool bSuccess = true; 
     using (FileStream fs = new FileStream(szFileName, FileMode.Open)) 
     { 
      using (BinaryReader br = new BinaryReader(fs)) 
      { 
       Byte[] bytes = new Byte[fs.Length]; 

       // Your unmanaged pointer. 
       IntPtr pUnmanagedBytes = new IntPtr(0); 
       int nLength; 

       nLength = Convert.ToInt32(fs.Length); 
       // Read the contents of the file into the array. 
       bytes = br.ReadBytes(nLength); 
       // Allocate some unmanaged memory for those bytes. 
       pUnmanagedBytes = Marshal.AllocCoTaskMem(nLength); 
       // Copy the managed byte array into the unmanaged array. 
       Marshal.Copy(bytes, 0, pUnmanagedBytes, nLength); 
       // Send the unmanaged bytes to the printer. 

       bSuccess = SendBytesToPrinter(szPrinterName, pUnmanagedBytes, nLength); 
       // Free the unmanaged memory that you allocated earlier. 
       Marshal.FreeCoTaskMem(pUnmanagedBytes); 
      } 
     } 
     return bSuccess; 
    } 
} 

}`

回答

0

回答正確:現在程序使用SumantraPDF默默打印PDF文件。