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

📄 patterncolor.java

📁 一个java操作pdf文件的开发包,很好用的.
💻 JAVA
字号:
package com.lowagie.text.pdf;/** Represents a pattern. Can be used in high-level constructs (Paragraph, Cell, etc.). */public class PatternColor extends ExtendedColor {    /** The actual pattern.     */        PdfPatternPainter painter;        /** Creates a color representing a pattern.     * @param painter the actual pattern     */        public PatternColor(PdfPatternPainter painter) {        super(TYPE_PATTERN, .5f, .5f, .5f);        this.painter = painter;    }        /** Gets the pattern.     * @return the pattern     */        public PdfPatternPainter getPainter() {        return this.painter;    }}

⌨️ 快捷键说明

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