印刷されたドキュメントをキャプチャし、これらのドキュメントを xps\image に変換するプログラムを構築しています。
現在、 FileSystemWatcherを使用してディレクトリ「C:\Windows\System32\spool\PRINTERS\」を監視し、spl ファイルをコピーします。重複していないことを確認してから、 Win32 Spooler APIを使用して spl ファイルを印刷して xps ファイルに変換してみてください。およびMicrosoft XPS Document Writerの事前定義されたプリンターですが、以下に示すように出力ファイルを指定すると、エラー コード 1804 が返されます。空のままにしておくと成功しますが、出力ファイルが取得されません。
public static bool SendBytesToPrinter(string szPrinterName, IntPtr pBytes, Int32 dwCount, string outputFile, string dataType, out int errorCode)
{
IntPtr hPrinter;
var di = new DOCINFOA();
var bSuccess = false; // Assume failure unless you specifically succeed.
di.pDocName = "Spool Doc";
di.pDataType = dataType;
di.pOutputFile = outputFile;
// 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.
var dwWritten = 0;
bSuccess = WritePrinter(hPrinter, pBytes, dwCount, out dwWritten);
EndPagePrinter(hPrinter);
}
EndDocPrinter(hPrinter);
}
ClosePrinter(hPrinter);
}
// If you did not succeed, GetLastError may give more information
// about why not.
errorCode = bSuccess == false ? Marshal.GetLastWin32Error() : 0;
return bSuccess;
}
それで、私が間違っていること、およびスプールファイルをXPSドキュメントに印刷/変換する方法、および可能であれば画像ファイルとテキストファイルに変換する方法。
編集:追加情報を追加する
これがDOCINFOAの実装です
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public class DOCINFOA
{
[MarshalAs(UnmanagedType.LPStr)]
public string pDataType;
[MarshalAs(UnmanagedType.LPStr)]
public string pDocName;
[MarshalAs(UnmanagedType.LPStr)]
public string pOutputFile;
}
完全な呼び出しチェーンは次のとおりです。
アプリは次のコードを実行します
var dataTypes = new[] { null, "RAW", "RAW [FF appended]", "RAW [FF auto]", "NT EMF 1.003", "NT EMF 1.006", "NT EMF 1.007", "NT EMF 1.008", "TEXT", "XPS_PASS", "XPS2GDI" };
foreach (var dataType in dataTypes)
{
int errorCode;
RawPrinterHelper.SendFileToPrinter(@"Microsoft XPS Document Writer", sourceFile, outputFile, dataType, out errorCode);
//print errorCode
}
そしてRawPrinterHelperで
public static bool SendFileToPrinter(string szPrinterName, string szFileName, string outputPath, string dataType, out int errorCode)
{
// Open the file.
var fs = new FileStream(szFileName, FileMode.Open);
// Create a BinaryReader on the file.
var br = new BinaryReader(fs);
// Dim an array of bytes big enough to hold the file's contents.
// Your unmanaged pointer.
var documentPath = Path.GetFileName(szFileName);
var nLength = Convert.ToInt32(fs.Length);
// Read the contents of the file into the array.
var bytes = br.ReadBytes(nLength);
// Allocate some unmanaged memory for those bytes.
var 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.
var bSuccess = SendBytesToPrinter(szPrinterName, pUnmanagedBytes, nLength, outputPath, dataType, out errorCode);
// Free the unmanaged memory that you allocated earlier.
Marshal.FreeCoTaskMem(pUnmanagedBytes);
fs.Close();
return bSuccess;
}
そしてAPI関数
[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);