我用 Visual Studio 2005 C# 2.0 Net 编写了一个代码。我在 PDF 文件中阅读了文本文件和文本文件的内容。现在我想用画线替换文本文件中的文本(“---”)。
public void PDFCreate()
{
iTextSharp.text.Document doc = new iTextSharp.text.Document(PageSize.A4, 25, 10, 40, 40);
PdfWriter writer = PdfWriter.GetInstance(doc, fs);
///########
BaseFont bf = BaseFont.CreateFont(@"C:\WINNT\Fonts\COUR.TTF", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
iTextSharp.text.Font f = new iTextSharp.text.Font(bf, 10, iTextSharp.text.Font.BOLD);
BaseFont bs = BaseFont.CreateFont(@"C:\WINNT\Fonts\COUR.TTF", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
iTextSharp.text.Font s = new iTextSharp.text.Font(bs, 10.2f, iTextSharp.text.Font.NORMAL);
doc.Open();
PdfContentByte cb = writer.DirectContent;
string myfiles = MySetIniPath + feld[0] + "_rus." + feld[1];
string str;
StreamReader myfi = new StreamReader(myfiles);
{
while ((str = myfi.ReadLine()) != null)
{
if (str.Contains("MIMO"))
doc.NewPage();
if (str != "")
{
if (str.StartsWith("результат теста"))
{
doc.Add(new Phrase(str, s));
doc.Add(new Phrase("\n\n", s));
continue;
}
if (str.StartsWith("Nummer"))
{
doc.Add(new Phrase(str, f));
doc.Add(new Phrase("\n\n", f));
continue;
}
if (str.StartsWith("MIMO") ||
str.StartsWith("Serial") ||
str.StartsWith("Numbers") ||
str.StartsWith("order"))
{
doc.Add(new Phrase(str + "\n", f));
continue;
}
if (str.StartsWith("---"))
{
//Draw a line
continue;
}
doc.Add(new Phrase(str + "\n", s));
}
}
}
doc.Close();
myfi.Close();
}
如何if(str.StartsWith("----"))
使用 itextsharp 或使用来编写(替换)画一条线e.Graphics.MeasureString(" ", boldFont)