用C#实现生成PDF文档

None.gif using  System;
None.gif
using  System.IO;
None.gif
using  System.Text;
None.gif
using  System.Collections;
None.gif
None.gif
namespace  PDFGenerator
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif
InBlock.gif
public class PDFGenerator
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif
static float pageWidth = 594.0f;
InBlock.gif
static float pageDepth = 828.0f;
InBlock.gif
static float pageMargin = 30.0f;
InBlock.gif
static float fontSize = 20.0f;
InBlock.gif
static float leadSize = 10.0f;
InBlock.gif
InBlock.gif
static StreamWriter pPDF=new StreamWriter("E:\\myPDF.pdf");
InBlock.gif
InBlock.gif
static MemoryStream mPDF= new MemoryStream();
InBlock.gif
InBlock.gif
static void ConvertToByteAndAddtoStream(string strMsg)
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif    Byte[] buffer
=null;
InBlock.gif    buffer
=ASCIIEncoding.ASCII.GetBytes(strMsg);
InBlock.gif    mPDF.Write(buffer,
0,buffer.Length); 
InBlock.gif    buffer
=null;
ExpandedSubBlockEnd.gif}

InBlock.gif
InBlock.gif
static string xRefFormatting(long xValue)
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif    
string strMsg =xValue.ToString();
InBlock.gif    
int iLen=strMsg.Length;
InBlock.gif    
if (iLen<10)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        StringBuilder s
=new StringBuilder();
InBlock.gif        
int i=10-iLen;
InBlock.gif        s.Append(
'0',i);
InBlock.gif        strMsg
=s.ToString() + strMsg;
ExpandedSubBlockEnd.gif    }

InBlock.gif    
return strMsg;
ExpandedSubBlockEnd.gif}

InBlock.gif
InBlock.gif
static void Main(string[] args)
ExpandedSubBlockStart.gifContractedSubBlock.gif
dot.gif{
InBlock.gif    ArrayList xRefs
=new ArrayList();
InBlock.gif    
//Byte[] buffer=null;
InBlock.gif
    float yPos =0f;
InBlock.gif    
long streamStart=0;
InBlock.gif    
long streamEnd=0;
InBlock.gif    
long streamLen =0;
InBlock.gif    
string strPDFMessage=null;
InBlock.gif    
//PDF文档头信息
InBlock.gif
    strPDFMessage="%PDF-1.1\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    xRefs.Add(mPDF.Length);
InBlock.gif    strPDFMessage
="1 0 obj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
="<< /Length 2 0 R >>\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
="stream\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
ExpandedSubBlockStart.gifContractedSubBlock.gif    
/**/////PDF文档描述
InBlock.gif    streamStart=mPDF.Length;
InBlock.gif    
//字体
InBlock.gif
    strPDFMessage="BT\n/F0 " + fontSize +" Tf\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    
//PDF文档实体高度
InBlock.gif
    yPos = pageDepth - pageMargin;
InBlock.gif    strPDFMessage
=pageMargin + " " + yPos +" Td\n" ;
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
= leadSize+" TL\n" ;
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    
//实体内容
InBlock.gif
    strPDFMessage= "(http://www.wenhui.org)Tj\n" ;
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
= "ET\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    streamEnd
=mPDF.Length;
InBlock.gif
InBlock.gif    streamLen
=streamEnd-streamStart;
InBlock.gif    strPDFMessage
= "endstream\nendobj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    
//PDF文档的版本信息
InBlock.gif
    xRefs.Add(mPDF.Length);
InBlock.gif    strPDFMessage
="2 0 obj\n"+ streamLen + "\nendobj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    xRefs.Add(mPDF.Length);
InBlock.gif    strPDFMessage
="3 0 obj\n<</Type/Page/Parent 4 0 R/Contents 1 0 R>>\nendobj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    xRefs.Add(mPDF.Length);
InBlock.gif    strPDFMessage
="4 0 obj\n<</Type /Pages /Count 1\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
="/Kids[\n3 0 R\n]\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
="/Resources<</ProcSet[/PDF/Text]/Font<</F0 5 0 R>> >>\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
="/MediaBox [ 0 0 "+ pageWidth + " " + pageDepth + " ]\n>>\nendobj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    xRefs.Add(mPDF.Length);
InBlock.gif    strPDFMessage
="5 0 obj\n<</Type/Font/Subtype/Type1/BaseFont/Courier/Encoding/WinAnsiEncoding>>\nendobj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    xRefs.Add(mPDF.Length);
InBlock.gif    strPDFMessage
="6 0 obj\n<</Type/Catalog/Pages 4 0 R>>\nendobj\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    streamStart
=mPDF.Length;
InBlock.gif    strPDFMessage
="xref\n0 7\n0000000000 65535 f \n";
InBlock.gif    
for(int i=0;i<xRefs.Count;i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        strPDFMessage
+=xRefFormatting((long) xRefs[i])+" 00000 n \n";
ExpandedSubBlockEnd.gif    }

InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    strPDFMessage
="trailer\n<<\n/Size "+ (xRefs.Count+1)+"\n/Root 6 0 R\n>>\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif
InBlock.gif    strPDFMessage
="startxref\n" + streamStart+"\n%%EOF\n";
InBlock.gif    ConvertToByteAndAddtoStream(strPDFMessage);
InBlock.gif    mPDF.WriteTo(pPDF.BaseStream);
InBlock.gif
InBlock.gif    mPDF.Close();
InBlock.gif    pPDF.Close();
ExpandedSubBlockEnd.gif}

ExpandedSubBlockEnd.gif}

ExpandedBlockEnd.gif}
转自: http://goaler.xicp.net/Article/ShowArticle.asp?ID=559

转载于:https://www.cnblogs.com/Dicky/archive/2005/03/21/122561.html

C#实现生成PDF文档(附源码) 收藏 //write by wenhui.org using System; using System.IO; using System.Text; using System.Collections; namespace PDFGenerator { public class PDFGenerator { static float pageWidth = 594.0f; static float pageDepth = 828.0f; static float pageMargin = 30.0f; static float fontSize = 20.0f; static float leadSize = 10.0f; static StreamWriter pPDF=new StreamWriter("E:\myPDF.pdf"); static MemoryStream mPDF= new MemoryStream(); static void ConvertToByteAndAddtoStream(string strMsg) { Byte[] buffer=null; buffer=ASCIIEncoding.ASCII.GetBytes(strMsg); mPDF.Write(buffer,0,buffer.Length); buffer=null; } static string xRefFormatting(long xValue) { string strMsg =xValue.ToString(); int iLen=strMsg.Length; if (iLen<10) { StringBuilder s=new StringBuilder(); int i=10-iLen; s.Append('0',i); strMsg=s.ToString() + strMsg; } return strMsg; } static void Main(string[] args) { ArrayList xRefs=new ArrayList(); //Byte[] buffer=null; float yPos =0f; long streamStart=0; long streamEnd=0; long streamLen =0; string strPDFMessage=null; //PDF文档头信息 strPDFMessage="%PDF-1.1 "; ConvertToByteAndAddtoStream(strPDFMessage); xRefs.Add(mPDF.Length); strPDFMessage="1 0 obj "; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="<> "; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="stream "; ConvertToByteAndAddtoStream(strPDFMessage); ////////PDF文档描述 streamStart=mPDF.Length; //字体 strPDFMessage="BT /F0 " + fontSize +" Tf "; ConvertToByteAndAddtoStream(strPDFMessage); //PDF文档实体高度 yPos = pageDepth - pageMargin; strPDFMessage=pageMargin + " " + yPos +" Td " ; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage= leadSize+" TL " ; ConvertToByteAndAddtoStream(strPDFMessage); //实体内容 strPDFMessage= "(http://www.wenhui.org)Tj " ; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage= "ET "; ConvertToByteAndAddtoStream(strPDFMessage); streamEnd=mPDF.Length; streamLen=streamEnd-streamStart; strPDFMessage= "endstream endobj "; ConvertToByteAndAddtoStream(strPDFMessage); //PDF文档的版本信息 xRefs.Add(mPDF.Length); strPDFMessage="2 0 obj "+ streamLen + " endobj "; ConvertToByteAndAddtoStream(strPDFMessage); xRefs.Add(mPDF.Length); strPDFMessage="3 0 obj <> endobj "; ConvertToByteAndAddtoStream(strPDFMessage); xRefs.Add(mPDF.Length); strPDFMessage="4 0 obj <</Type /Pages /Count 1 "; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="/Kids[ 3 0 R ] "; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="/Resources<</ProcSet[/PDF/Text]/Font<> >> "; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="/MediaBox [ 0 0 "+ pageWidth + " " + pageDepth + " ] >> endobj "; ConvertToByteAndAddtoStream(strPDFMessage); xRefs.Add(mPDF.Length); strPDFMessage="5 0 obj <> endobj "; ConvertToByteAndAddtoStream(strPDFMessage); xRefs.Add(mPDF.Length); strPDFMessage="6 0 obj <> endobj "; ConvertToByteAndAddtoStream(strPDFMessage); streamStart=mPDF.Length; strPDFMessage="xref 0 7 0000000000 65535 f "; for(int i=0;i<xRefs.Count;i++) { strPDFMessage+=xRefFormatting((long) xRefs[i])+" 00000 n "; } ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="trailer <> "; ConvertToByteAndAddtoStream(strPDFMessage); strPDFMessage="startxref " + streamStart+" %%EOF "; ConvertToByteAndAddtoStream(strPDFMessage); mPDF.WriteTo(pPDF.BaseStream); mPDF.Close(); pPDF.Close(); } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值