其他网站下载来的类,可以用于Winform、Asp.Net,用于服务器端PDF或其他文件打印。

直接上代码:

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.IO; namespace CyServer.WinAPI
{
public class RawPrinterHelper
{
// Structure and API declarions:
[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();
bool bSuccess = false; // Assume failure unless you specifically succeed. di.pDocName = "My C#.NET RAW Document";
di.pDataType = "RAW"; // 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);
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.
FileStream fs = new FileStream(szFileName, FileMode.Open);
// Create a BinaryReader on the file.
BinaryReader br = new BinaryReader(fs);
// Dim an array of bytes big enough to hold the file's contents.
Byte[] bytes = new Byte[fs.Length];
bool bSuccess = false;
// 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;
} public static bool SendStringToPrinter(string szPrinterName, string szString)
{
IntPtr pBytes;
Int32 dwCount;
// How many characters are in the string?
dwCount = szString.Length;
// Assume that the printer is expecting ANSI text, and then convert
// the string to ANSI text.
pBytes = Marshal.StringToCoTaskMemAnsi(szString);
// Send the converted ANSI string to the printer.
SendBytesToPrinter(szPrinterName, pBytes, dwCount);
Marshal.FreeCoTaskMem(pBytes);
return true;
}
} }

下面再Copy一点介绍:
打印管理库函数Winspool.drv
打印机底层驱动的包 函数名称 说明
AbortPrinter 删除打印机的假脱机文件
AddForm 向可被选择用于给定打印机的格式表中添加一
格式
AddJob 返回一个可用来存储打印工作的文件的完整路
径和文件名
AddMonitor 安装一个本机打印机监视器,并连接配置文件
、数据文件和监视器文件 AddPort 向支持的端口列表中添加一端口名
AddPrinter 向指定的服务器所支持的打印机列表中添加一
打印机
AddPrinterConnection 为当前用户添加指定的打印机并连接
AddPrinterDriver 安装一本地或远程打印机并连接培植文件、数
据文件和驱动文件
AddPrintProcessor 在指定的服务器上安装一打印处理程序,并将它
的名称添加到所支持的内部列表中
AddPrintProvidor 安装一本地打印机提供程序,并连接配置文件、
数据文件和提供程序文件
AdvancedDocumentProperties 为给定的打印机显示一个打印机高级配置对话
框,以允许进行配置
ClosePrinter 关闭给定的打印机对象
ConfigurePort 显示指定服务器上给定端口的配置对话框,以
允许进行配置
ConnectToPrinterDlg 显示一对话框供用户在网络浏览并连接打印机
DeleteForm 从所支持的格式表中删除一个格式名
DeleteMonitor 删除一个由AddMonitor函数所添加的打印机监
视器
DeleteProt 显示一对话框,以允许用户删除一个端口名
DeletePrinter 删除指定的打印机对象
DeletePrinterConnection 删除指定的打印机连接
DeletePrinterDriver 从给定服务器所支持的驱动器名称表中删除指
定的打印机驱动器
DeletePrintProcessor 删除由AddPrintProcessor函数所添加的打印机
处理程序
DeletePrintProvidor 删除由AddPrintProvidor函数所添加的提供器
DeviceCapabilities 获取指定的打印机所需求的性能 DocumentProperties 为给定的打印机显示一个打印机配置对话框,
以允许进行配置
EndDocPrinter 终止给定打印机的一个打印作业
EndPagePrinter 指示一页的结束和下一页的开始
EnumForms 枚举指定打印机所支持的格式
EnumJobs 用描述打印机的打印作业数据初始化一个
JOB_INFO_1或JOB_INFO_2结构数组,以便枚举打
印机作业
EnumMonitors 用描述给定服务器的监视器数据初始化一个
MONITOR_INFO_1结构数组,以便枚举打印机监视

EnumPorts 枚举可用于在指定服务器上进行打印的端口
EnumPrinterDrivers 枚举在给定打印机服务器上安装的所有打印机
驱动程序
EnumPrinters 枚举指定服务器上可用的打印机
EnumPrintProcessorDatatypes 枚举指定打印机处理程序所支持的数据类型
EnumPrintProcessors 枚举在指定服务器上安装的打印处理器
FindClosePrinterChangeNotification关闭通过调用
FindFirstPrinterChangeNotification函数建
立的改变通知对象
FindFirstPrinterChangeNotification创建一个改变通知对象并返回句柄,使用该
句柄在调用一个等待函数期间,检查打印机或打
印服务器的变化
FindNextPrinterChangeNotification为与指定打印机或打印服务器相关的改变通
知对象检取最近的改变通知通知信息,也可用来
重新设置该改变通知对象为不发信息状态
FreePrinterNotifyInfo 释放系统分配的由
FindNextPrinterChangeNotification函数返回
的缓冲区 GetForm 利用描述给定打印机指定格式的数据初始化一
个FORM_INFO_1结构
GetJob 检取指定打印机的打印作业数据
GetPrinter 检取给定打印机的数据
GetPrinterData 检取给定打印机的配置数据
GetPrinterDriver 检取给定打印机的驱动程序数据
GetPrinterDriverDirectory 检取给定打印机驱动程序的目录路径
GetPrintProcessDirectory 检取指定服务器上打印机处理程序的路径
OpenPrinter 检取一个标识特定打印机或打印服务器的句柄
并打开
PrinterMessageBox 显示一个消息框,供一个正打印的应用程序通知
用户发生一个打印作业错误
PrinterProperties 为给定打印机显示一个打印机性能对话框,以允
许进行设置
ReadPrinter 从给定打印机检取数据
ResetPrinter 让应用程序设定有StartDocPrinter函数提交的
打印文档的数据类型和设备模式值
ScheduleJob 通知假脱机打印程序,可为指定的作业安排打印
SetForm 为给定的打印机设置格式信息
SetJob 暂停,恢复,取消或重新启动给定打印机上指定
的打印作业
SetPrinter 用暂停,恢复,或清除所有打印作业来设置指定
的打印机
SetPrinterData 设置一台打印机的配置数据
StartDocPrinter 通知假脱机打印程序将在假脱机上打印一个文

StartPagePrinter 通知假脱机打印程序将在给定打印机上打印一页
WritePrinter 通知假脱机打印程序应向给定的打印机写指定
的数据
用底层的通讯命令,实现很多命令

C#通过调用WinApi打印PDF文档类,服务器PDF打印、IIS PDF打印的更多相关文章

  1. C# 打印PDF文档的10种方法

    操作PDF文档时,打印是常见的需求之一.针对不同的打印需求,可分多种情况来进行,如设置静默打印.指定打印页码范围和打印纸张大小.双面打印.黑白打印等等.经过测试,下面将对常见的几种PDF打印需求做一些 ...

  2. 【Android Developers Training】 54. 打印自定义文档

    注:本文翻译自Google官方的Android Developers Training文档,译者技术一般,由于喜爱安卓而产生了翻译的念头,纯属个人兴趣爱好. 原文链接:http://developer ...

  3. Quartz 2D编程指南- PDF文档的创建、显示及转换

    PDF文档存储依赖于分辨率的向量图形.文本和位图,并用于程序的一系列指令中.一个PDF文档可以包含多页的图形和文本.PDF可用于创建跨平台.只读的文档,也可用于绘制依赖于分辨率的图形.         ...

  4. [开源框架推荐]Icepdf:纯java的pdf文档的提取和转换库

    ICEpdf 是一个轻量级的开源 Java 语言的 PDF 类库.通过 ICEpdf 可以用来浏览.内容提取和转换 PDF 文档,而无须一些本地PDF库的支持. 可以用来做什么? 1.从pdf文件中提 ...

  5. 常用PDF文档开发库

    C++库: 1,PDF类库 PoDoFo   http://podofo.sourceforge.net/  PoDoFo 是一个用来操作 PDF 文件格式的 C++ 类库.它还包含一些小工具用来解析 ...

  6. 操作PDF文档功能的相关开源项目探索——iTextSharp 和PDFBox

    原文 操作PDF文档功能的相关开源项目探索——iTextSharp 和PDFBox 很久没自己写写心得日志与大家分享了,一方面是自己有点忙,一方面是自己有点懒,没有及时总结.因为实践是经验的来源,总结 ...

  7. pdf.js实现在HTML下直接浏览pdf文档,无需插件即可实现

    近期,有一个朋友做B端,服务器存了大量的金融类数据,很多都是pdf文档,他现在的做法是,先将pdf文档转换成flash,再放到浏览器上给用户浏览,但是他告诉我,这种体验太差了,而且很好资源,空间已经快 ...

  8. C# 加密、解密PDF文档(基于Spire.Cloud.SDK for .NET)

    Spire.Cloud.SDK for .NET提供了接口PdfSecurityApi可用于加密.解密PDF文档.本文将通过C#代码演示具体加密及解密方法. 使用工具: Spire.Cloud.SDK ...

  9. C#使用Spire.Pdf包对PDF文档进行数字签名

    背景 对PDF文档进行数字签名的需求 对PDF文档添加水印的需求 网上资料版本不一或不全 本文章提到的Spire.Pdf均是使用的Spire.Pdf for .NET,除此之前还有其他语言的版本,如S ...

随机推荐

  1. 洛谷P1064--金明的预算方案(简单背包)

    https://www.luogu.org/problemnew/show/P1064 #include<iostream> #include<algorithm> #incl ...

  2. Nginx 教程(1):基本概念

    简介 嗨!分享就是关心!所以,我们愿意再跟你分享一点点知识.我们准备了这个划分为三节的<Nginx教程>.如果你对 Nginx 已经有所了解,或者你希望了解更多,这个教程将会对你非常有帮助 ...

  3. Solidity: ParserError: Expected pragma, import directive or contract/interface/library definition.

    第一行忘记加分号 pragma solidity ^0.4.0;

  4. JS获取form表单数据

    以下代码可放在一个js文件中,以便通用: //获取指定表单中指定标签对象 function getElements(formId, label) { var form = document.getEl ...

  5. 2018/9/6 spring框架的整理

    spring知识的巩固整理AOP和ioc概念,以及了解到了为何要使用spring框架的目的,作用:变换资源获取的方向.更像是按需所求.配置bean的方式:利用XML的方式,基于注解的方式两种.1通过全 ...

  6. hive 日常技巧

    --删除表中重复数据 delete from vitae a where (a.peopleId,a.seq) in (select peopleId,seq from vitae group by ...

  7. linux之配置Mongodb~

       OK 让我们先下载一波mongodb~(64位ubuntu) curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0. ...

  8. 使用ILSpy软件反编译.Net应用程序的方法及注意事项

    今天遇到之前同事写的代码没有源码了,但是客户要在原来的基础上修改程序!好在没有做加壳处理,所以就用了ILSpy软件进行反编译!下面把步骤及遇到的问题写下来: 1.打开ILSpy软件,点击File  , ...

  9. Liunx百宝箱(Centos补充)

    Liunx可分为Redhat系列和debian系列,其采用的都是相同的Liunx内核,最大的不同点就是对RPM包的管理,使用的软件源不同.但相比之下debian系列的桌面端较好,Redhat其稳定性较 ...

  10. Merge branch 'master' of xxx error

    Merge branch 'master' of xxx Please enter a commit message to explain why this merge is necessary,es ...