GhostscriptExample GS pdf转曲 pdf去白边

pdf转曲
pdf去白边

package cn.net.haotuo.pojo;import com.itextpdf.text.Document;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.*;import java.io.*;public class GhostscriptExample {public static String gsPath = "C:/Program Files/gs/gs9.54.0/bin/gswin64c.exe";public static void main(String[] args) throws IOException {String inputFilePath = "C:\\Users\\Administrator\\Desktop\\2535.pdf";try {float pt = 72f/25.4f;String quchubaibian = quchubaibian(inputFilePath);PdfReader reader = new PdfReader(quchubaibian);String outPath  = quchubaibian.replaceAll("ok.pdf","白.pdf");Rectangle boxSize = reader.getBoxSize(1, "art");Document document = new Document(new Rectangle(boxSize.getWidth(), boxSize.getHeight()));FileOutputStream outputStream = new FileOutputStream(outPath);//新建一个pdf文档;PdfWriter writer = PdfWriter.getInstance(document, outputStream);//把新建的pdf 赋值给 documentwriter.setBoxSize("trim",boxSize);writer.setPdfVersion(PdfWriter.VERSION_1_5);document.open();//打开 document文档PdfContentByte cb = writer.getDirectContent();for(int i=1;i<=reader.getNumberOfPages();i++){PdfImportedPage importedPage = writer.getImportedPage(reader, i);Rectangle boxSizeTemp = reader.getBoxSize(i, "art");Rectangle rectangle = new Rectangle(0,0,boxSizeTemp.getWidth(),boxSizeTemp.getHeight());document.setPageSize(rectangle);document.newPage();cb.addTemplate(importedPage,-boxSizeTemp.getLeft(),-boxSizeTemp.getBottom());}outputStream.flush();//关闭文件document.close();//关闭文件outputStream.close();//关闭文件reader.close();} catch (Exception e) {e.printStackTrace();}}public static String quchubaibian(String pdfPath){String outPath = pdfPath.substring(0,pdfPath.length()-4)+"_ok.pdf";StringBuffer stringBuffer = new StringBuffer();stringBuffer.append(gsPath);stringBuffer.append(" -o " + outPath);stringBuffer.append(" -sDEVICE=pdfwrite -dFIXEDMEDIA -dPDFFitPage -c \"<</AutoRotatePages=/None>> setpagedevice\"");stringBuffer.append(" -f " + pdfPath);GhostscriptExample.run(stringBuffer.toString());return outPath;}/*** pdf转曲* @param pdfPath*/public static void zhuanqu(String pdfPath){String outPath = pdfPath.substring(0,pdfPath.length()-4)+"_ok.pdf";StringBuffer stringBuffer = new StringBuffer();stringBuffer.append(gsPath);stringBuffer.append(" -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dNoOutputFonts");stringBuffer.append(" -sOutputFile=" + outPath);stringBuffer.append(" -f " + pdfPath);GhostscriptExample.run(stringBuffer.toString());}public static String pdf2ps(String pdfPath){String ps = pdfPath.substring(0,pdfPath.length()-3)+"ps";StringBuffer stringBuffer = new StringBuffer();stringBuffer.append(gsPath);stringBuffer.append(" -dNOPAUSE -dBATCH -sDEVICE=ps2write -dFILTERTEXT");stringBuffer.append(" -sOutputFile=" + ps);stringBuffer.append(" -f " + pdfPath);GhostscriptExample.run(stringBuffer.toString());return ps;}/*** 导出jpg** @param pdfPath 输入pdf文件* @param outPath 输出jpg路径* @param dJPEGQ  jpg质量 0-100*/public static void exportJpg(String pdfPath, String outPath, String dpi, String dJPEGQ) {StringBuffer stringBuffer = new StringBuffer();stringBuffer.append(gsPath);stringBuffer.append(" -dNOPAUSE -dBATCH -sDEVICE=jpeg");stringBuffer.append(" -r" + dpi);stringBuffer.append(" -dJPEGQ=" + dJPEGQ);stringBuffer.append(" -sOutputFile=" + outPath);stringBuffer.append(" -f " + pdfPath);GhostscriptExample.run(stringBuffer.toString());}/*** 导出png** @param pdfPath pdf路径* @param outPath 输出png路径* @param dpi     分辨率*/public static void exportPng(String pdfPath, String outPath, String dpi) {/*** gsPath: Ghostscript 执行文件的路径* -dNOPAUSE: 防止 Ghostscript 在每一页处理完成后暂停等待用户操作* -dBATCH: 让 Ghostscript 在处理完最后一页后退出而不是等待新的输入* -sDEVICE=png16m: 指定输出设备为 PNG16m 格式。PNG16m 是一种支持多种颜色深度的 PNG 图像格式,其具有较高的图像质量。*      -sDEVICE=png16m 表示png-24 较大*      -sDEVICE=png256 表示png-8 较小*/StringBuffer stringBuffer = new StringBuffer();stringBuffer.append(gsPath);stringBuffer.append(" -dNOPAUSE -dBATCH -sDEVICE=png16m");stringBuffer.append(" -r" + dpi);stringBuffer.append(" -sOutputFile=" + outPath);stringBuffer.append(" -f " + pdfPath);GhostscriptExample.run(stringBuffer.toString());}public static void run(String command) {System.out.println(command);try {Process process = Runtime.getRuntime().exec(command);int exitCode = process.waitFor();if (exitCode == 0) {System.out.println("Conversion successful!");} else {System.out.println("Conversion failed with error code: " + exitCode);InputStream errorStream = process.getErrorStream();BufferedReader errorReader = new BufferedReader(new InputStreamReader(errorStream));String line;while ((line = errorReader.readLine()) != null) {System.out.println(line);}}} catch (IOException | InterruptedException e) {e.printStackTrace();}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/619993.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JVM基础(7)——ParNew垃圾回收器

作者简介&#xff1a;大家好&#xff0c;我是smart哥&#xff0c;前中兴通讯、美团架构师&#xff0c;现某互联网公司CTO 联系qq&#xff1a;184480602&#xff0c;加我进群&#xff0c;大家一起学习&#xff0c;一起进步&#xff0c;一起对抗互联网寒冬 学习必须往深处挖&…

计算机基础专升本笔记十-Windows7基础(二)常用快捷键及常见扩展名

计算机基础专升本笔记十-Windows7基础&#xff08;二&#xff09;常用快捷键及常见扩展名 一、Windows常用快捷键 &#xff08;1&#xff09;Ctrl 系列&#xff1a; 按键作用Ctrl Z撤销Ctrl C复制Ctrl X剪切Ctrl V粘贴Ctrl A全选Ctrl D删除所选目标&#xff08;文件、…

【LeetCode:30. 串联所有单词的子串 | 滑动窗口 + 哈希表】

&#x1f680; 算法题 &#x1f680; &#x1f332; 算法刷题专栏 | 面试必备算法 | 面试高频算法 &#x1f340; &#x1f332; 越难的东西,越要努力坚持&#xff0c;因为它具有很高的价值&#xff0c;算法就是这样✨ &#x1f332; 作者简介&#xff1a;硕风和炜&#xff0c;…

【踩坑】flask_uploads报错cannot import name ‘secure_filename‘

转载请注明出处&#xff1a;小锋学长生活大爆炸[xfxuezhang.cn] 背景说明 截至目前&#xff0c;用新版的flask实现文件上传(用到flask_uploads库)&#xff0c;会出现这个问题。 问题原因 版本问题&#xff0c;新的werkzeug已经把secure_filename的位置改了。 解决方法 手动修改…

绘制几何图形(Shape)

目录 1、创建绘制组件 2、形状视口viewport 3、自定义样式 4、场景示例 绘制组件用于在页面绘制图形&#xff0c;Shape组件是绘制组件的父组件&#xff0c;父组件中会描述所有绘制组件均支持的通用属性。具体用法请参考Shape。 1、创建绘制组件 绘制组件可以由以下两种形式…

【Python机器学习】分类器的不确定估计——预测概率

predict_proba的输出是每个类别的概率&#xff0c;通常比decision_function的输出更容易理解&#xff0c;对于二分类问题&#xff0c;它的形状始终是(n_samples,2)。 import mglearn.tools from sklearn.ensemble import GradientBoostingClassifier from sklearn.datasets im…

xcode 14.3升级 pod升级

一款2年没有维护的游戏需要升级SDK 1.升级mac os系统到 13.6系统 2.升级xcode 到14.3 3.升级pod到1.14 参考: (Mac 升级ruby 升级brew update-CSDN博客) xcode 14.3升级,缺少libarclite_iphoneos.a 文件-CSDN博客 MacOS 虚拟机Mac地址修改-CSDN博客 pod install …

Vue-16、Vue列表渲染(v-for的使用)

1、vue遍历数组 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>列表渲染</title><script type"text/javascript" src"https://cdn.jsdelivr.net/npm/vue2/dist/vue.js"…

LeetCode1109. Corporate Flight Bookings

文章目录 一、题目二、题解 一、题目 There are n flights that are labeled from 1 to n. You are given an array of flight bookings bookings, where bookings[i] [firsti, lasti, seatsi] represents a booking for flights firsti through lasti (inclusive) with sea…

C#基础-空处理

在c#中&#xff0c;值对象是没有办法赋值为null的。比如说&#xff0c;你想要定义一个布尔值&#xff0c;你的赋值数据要么得是true、要么就得是false&#xff0c;默认情况下我们永远没可能给这个布尔赋值为null&#xff0c;即使只是对这个变量进行声明而不初始化数据&#xff…

element复选框表格,实现shift多选

需求&#xff1a; 对表格数据进行批量处理的时候&#xff0c;即使有复选框但是也得需要一个一个选。有点麻烦。 解决&#xff1a; 点击一行之后摁住shift&#xff0c;再选择另一个&#xff0c;两条数据之间的则为选中 <template><el-table :data"tableData&quo…

不方便拉网线,房间又没Wifi信号?按照这个教程,让你家里每个角落都有网

前言 前段时间去了一个朋友家里&#xff0c;她老是和我叨叨说她家的卧室一点Wifi信号都没有。每次一躺床上都只能用手机流量上网。 家里明明有拉宽带&#xff0c;为什么在某一些地方还是得用自己手机流量&#xff1f;哎&#xff0c;有钱人的痛就是房子太大了。 我问她为啥不多…

【Maven】002-Maven 安装和配置

【Maven】002-Maven 安装和配置 文章目录 【Maven】002-Maven 安装和配置一、官网1、官网2、历史版本列表3、Maven 仓库地址 二、下载 Maven 3.8.8 版本1、进入 Maven 3.8.8 版本发行说明页2、进入下载页3、下载4、下载得到 apache-maven-3.8.8-bin.zip 三、Maven 安装1、将安装…

jenkins环境搭建

jenkins环境搭建 1.环境说明2.环境准备1.jdk安装2.安装Git3.安装sshpass4.安装Maven 3.安装Jenkins(war包方式安装)1.安装2.镜像加速 4.官网提供的yum方式安装5.访问 1.环境说明 keyvalue环境centos7jdk版本11git2.43.0maven3.9.6jenkins最新版本http://mirrors.jenkins-ci.or…

【spring源码分析】@Conditional的使用以及分析

Conditional Conditional 一、基本信息二、注解描述三、注解源码四、主要功能五、最佳实践 在Bean上使用在Configuration上使用自定义组合注解 六、时序图七、源码分析八、注意事项九、总结 最佳实践总结源码分析总结 一、基本信息 转载自github&#xff0c;在此作为个人备…

LINUX基础培训六之磁盘和文件系统管理

前言、本章学习目标 掌握fdisk分区类型和管理分区了解parted分区类型掌握LVM模式文件系统创建、扩展、缩小文件系统 一、磁盘的分区管理 在 Linux 中有专门的分区命令 fdisk 和 parted。其中 fdisk 命令较为常用&#xff0c;但不支持大于 2TB 的分区&#xff1b;如果需要支…

C++/WinRT 入门

本主题将会根据新的 Windows 控制台应用程序 (C/WinRT) 项目演练一个简单的代码示例。 C/WinRT 快速入门 创建一个新的 Windows 控制台应用程序(C/WinRT) 项目。 根据实际选择平台 如果出现如下错误&#xff0c;需要安装正确的SDK。 找不到 Windows SDK 版本 10.0.17134.0 (o…

支付功能测试用例测试点?

支付功能测试用例测试点是指在测试支付功能时&#xff0c;需要关注和验证的各个方面。根据不同的支付场景和需求&#xff0c;支付功能测试用例测试点可能有所不同&#xff0c;但一般可以分为以下几类&#xff1a; 功能测试&#xff1a;主要检查支付功能是否符合设计和业务需求…

RTTI结构详细分析(VC++)

对于RTTI结构的资料真的屈指可数,类的逆向也一直是一个不好弄的问题.对此我只想贡献我的一份力量。 文中我不会分析类的内存布局,因为有很多资料已经分析的挺好的了(见参考资料)。但是现有我能找到的资料对RTTI结构的表述不完整,或者表述模糊不清,参考Clang的部分源码后&#…

kube-apiserver参数详解

Global flags 全局选项详解 选项默认值描述–log-file如果不为空,将是日志输出的文件–log-dir如果不为空,将是日志输出的目录–alsologtostderrlog日志会输出到标准错误并且也会输出到文件中–logtostderrtruelog日志会输出到标准错误而不是文件中–log-file-max-size1800定…