一个java操作pdf文件的开发包,很好用的.
源代码在线查看: pdficcbased.java
package com.lowagie.text.pdf; import java.io.*; import java.awt.color.ICC_Profile; import com.lowagie.text.Document; import com.lowagie.text.ExceptionConverter; /** * A PdfICCBased defines a ColorSpace * * @see PdfStream */ class PdfICCBased extends PdfStream { protected int NumberOfComponents; PdfICCBased(ICC_Profile profile) { super(); try { NumberOfComponents = profile.getNumComponents(); PdfNumber pNumber = new PdfNumber(NumberOfComponents); switch (NumberOfComponents) { case 1: put(PdfName.ALTERNATE, PdfName.DEVICEGRAY); break; case 3: put(PdfName.ALTERNATE, PdfName.DEVICERGB); break; case 4: put(PdfName.ALTERNATE, PdfName.DEVICECMYK); break; default: throw new PdfException(NumberOfComponents + " component(s) is not supported in PDF1.4"); } put(PdfName.N, new PdfNumber(NumberOfComponents)); bytes = profile.getData(); flateCompress(); } catch (Exception e) { throw new ExceptionConverter(e); } } }
|
相关资源 |
|
-
一个java操作pdf文件的开发包,很好用的.
-
关于ivr的jain,开发包,很好用的
-
一个对EXCEL数据库密码的破解工具,很好用的,对办公人员不可少的工具软件
-
12位AD转换器的C51源程序很好用的哦
-
用于恢复已误除的东东,很好用的,可以
-
gnu 的radius服务器很好用的
-
ch451键盘LED管理芯片的驱动程序,很好用的,设计很标准的代码
-
SQL与ACCESS相互转换的一些代码,很好用的
|