码迷,mamicode.com
首页 > 其他好文 > 详细

1pdf

时间:2014-11-19 18:13:17      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:http   ar   color   os   sp   on   div   bs   ef   

Document doc = new Document(new iTextSharp.text.Rectangle(564, 351)); 
PdfWriter writer= PdfWriter.GetInstance(doc, new FileStream(HttpContext.Current.Server.MapPath("1.pdf"), FileMode.Create)); 
doc.Open(); 
PdfContentByte cb = writer.DirectContent; 
cb.BeginText(); 
BaseFont bfont = BaseFont.CreateFont(@"c:\windows\fonts\SIMHEI.TTF", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);//设定字体:黑体 
cb.SetFontAndSize(bfont, 18);//设定字号 
cb.SetCharacterSpacing(1);//设定字间距 
cb.SetRGBColorFill(66, 00, 00);//设定文本颜色 
cb.ShowTextAligned(PdfContentByte.ALIGN_LEFT, "在位置100,70处开始显示文本", 100, 70,0); 
cb.EndText(); 
doc.Close();

1pdf

标签:http   ar   color   os   sp   on   div   bs   ef   

原文地址:http://www.cnblogs.com/wangcq/p/4108459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!