All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.pdf.fop.handler.FontHandler Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package org.dromara.pdf.fop.handler;

import lombok.Setter;
import lombok.experimental.Accessors;
import org.apache.fop.fonts.apps.TTFReader;

/**
 * pdf模板字体助手
 *
 * @author xsx
 * @date 2022/7/31
 * @since 1.8
 * 

* Copyright (c) 2020 xsx All Rights Reserved. * x-easypdf-fop is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * http://license.coscl.org.cn/MulanPSL2 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. * See the Mulan PSL v2 for more details. *

*/ @Setter @Accessors(chain = true) public class FontHandler { /** * 字体路径 */ private String fontPath; /** * 输出路径 */ private String outputPath; /** * 字体集合名称(使用的字体名称) */ private String ttcName; /** * 转换 */ public void transform() { // 如果字体路径未初始化,则提示错误 if (this.fontPath == null) { // 提示错误 throw new IllegalArgumentException("the font path can not be null"); } // 如果输出路径未初始化,则提示错误 if (this.outputPath == null) { // 提示错误 throw new IllegalArgumentException("the output path can not be null"); } // 如果字体集合名称未初始化,则初始化 if (this.ttcName == null) { this.ttcName = ""; } // 定义参数 String[] args = new String[4]; // 设置字体路径 args[0] = this.fontPath; // 设置输出路径 args[1] = this.outputPath; // 定义字体集合 args[2] = "-ttcname"; // 设置字体集合名称 args[3] = this.ttcName; // 生成字体xml TTFReader.main(args); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy