⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cv.cs

📁 iTextSharp
💻 CS
字号:
using System;
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;
//using iTextSharp.text.html;
using iTextSharp.text.xml;
//using iTextSharp.text.rtf;

namespace iTextSharp.tutorial.Chap07
{
	/// <summary>
	/// Cv 的摘要说明。
	/// </summary>
	public class Cv
	{
		public Cv()
		{
        
        Console.WriteLine("Chapter 7 extra: my resume");
        
        // step 1: creation of a document-object
        Document document = new Document(PageSize.A4, 80, 50, 30, 65);
        
        try {
            
            // step 2:
            // we create a writer that listens to the document
            // and directs a XML-stream to a file
            PdfWriter.GetInstance(document, new FileStream("cv.pdf", FileMode.Create));
            
            // step 3: we parse the document
            XmlParser.Parse(document, "cv.xml");
            
        }
        catch(Exception e) {
            
            Console.WriteLine(e.Message);
        }
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -