文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>解密pdf-6(pdf设置页面大小及版心尺寸)

解密pdf-6(pdf设置页面大小及版心尺寸)

时间:2010-10-11  来源:xue2

 

关键字: pdf 纸张 页面 大小 版心
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.PdfWriter;
/**
 * 
 *
 */
public class Simple6 {
           @SuppressWarnings("deprecation")
        public static void main(String[] args) throws DocumentException, IOException {  
                   //设置页面尺寸(纸张尺寸)
                   Rectangle pageSize = new Rectangle(288/2, 720/2);
               //设置版心尺寸(内容尺寸,边距)
                   Document doc = new Document(pageSize, 36, 18, 72, 72);
                   PdfWriter.getInstance(doc, new FileOutputStream("E:/HelloWorld.pdf"));
                   doc.open();
                   doc.add(new Paragraph("Test......."));
                   doc.add(new Paragraph("Test......."));
                   doc.add(new Paragraph("Test......."));
                   doc.close();
           }  
}


  • lib.rar (2.5 MB)
  • 下载次数: 20
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载