logicaldoc
文档:http://docs.logicaldoc.com/
下载: http://sourceforge.net/projects/logicaldoc/
logicaldoc 里面转换SWF用到了三个命令:
command.convert=convert
command.gs=gs
command.pdf2swf=pdf2swf
http://forums.logicaldoc.com/viewtopic.php?f=6&t=416&p=1050&hilit=command.convert#p1050
Speacking about the latest release 6.2.3, you need some external command.
GhostScript
ImageMagik
SWFTools
package com.logicaldoc.web; import com.logicaldoc.core.document.Document; import com.logicaldoc.core.document.dao.DocumentDAO; import com.logicaldoc.core.document.thumbnail.ThumbnailManager; import com.logicaldoc.core.store.Storer; import com.logicaldoc.util.Context; import com.logicaldoc.util.MimeType; import com.logicaldoc.util.config.ContextProperties; import com.logicaldoc.web.util.SessionUtil; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.io.FileUtils; import org.apache.commons.io.FilenameUtils; import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class DocumentPreview extends HttpServlet { protected static final String SUFFIX = "suffix"; public static final String DOC_ID = "docId"; private static final String FILE_VERSION = "fileVersion"; private static final long serialVersionUID = -6956612970433309888L; protected static Log log = LogFactory.getLog(DocumentPreview.class); protected static String PDF2SWF = "command.pdf2swf"; protected static String IMG2PDF = "command.convert"; protected String SWF_DIRECT_CONVERSION_EXTS = "gif, png, pdf, jpeg, jpg, tiff, tif"; public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String id = request.getParameter("docId"); String fileVersion = request.getParameter("fileVersion"); String suffix = request.getParameter("suffix"); InputStream stream = null; try { Storer storer = (Storer)Context.getInstance().getBean(Storer.class); long docId = Long.parseLong(id); if (StringUtils.isEmpty(suffix)) suffix = "thumb.jpg"; DocumentDAO docDao = (DocumentDAO)Context.getInstance().getBean(DocumentDAO.class); Document doc = (Document)docDao.findById(docId); if (StringUtils.isEmpty(fileVersion)) fileVersion = doc.getFileVersion(); SessionUtil.validateSession(request.getParameter("sid")); String resource = storer.getResourceName(docId, fileVersion, suffix); if (!(storer.exists(docId, resource))) { log.debug("Need for preview creation"); createPreviewResource(doc, fileVersion, resource); } stream = storer.getStream(docId, resource); if (stream == null) { log.debug("thumbnail not available"); forwardPreviewNotAvailable(request, response); return; } downloadDocument(request, response, stream, storer.getResourceName(doc, fileVersion, suffix)); } catch (Throwable t) { log.error(t.getMessage(), t); new IOException(t.getMessage()); } finally { if (stream != null) stream.close(); } } protected void createPreviewResource(Document doc, String fileVersion, String resource) { Storer storer = (Storer)Context.getInstance().getBean(Storer.class); String thumbResource = storer.getResourceName(doc, fileVersion, "thumb.jpg"); if (!(storer.exists(doc.getId(), thumbResource))) { ThumbnailManager thumbManager = (ThumbnailManager)Context.getInstance().getBean(ThumbnailManager.class); try { thumbManager.createTumbnail(doc, fileVersion); log.debug("Created thumbnail " + resource); } catch (Throwable t) { log.error(t.getMessage(), t); } } if (resource.endsWith(".jpg")) { return; } if (!(storer.exists(doc.getId(), resource))) { InputStream is = null; File tmp = null; try { tmp = File.createTempFile("preview", ""); String docExtension = FilenameUtils.getExtension(doc.getFileName()); if (this.SWF_DIRECT_CONVERSION_EXTS.contains(docExtension)) { is = storer.getStream(doc.getId(), storer.getResourceName(doc, fileVersion, null)); document2swf(tmp, docExtension, is); } else { is = storer.getStream(doc.getId(), thumbResource); document2swf(tmp, "jpg", is); } storer.store(tmp, doc.getId(), resource); log.debug("Created preview " + resource); } catch (Throwable e) { log.error(e.getMessage(), e); } finally { if (tmp != null) FileUtils.deleteQuietly(tmp); if (is != null) try { is.close(); } catch (IOException e) { } } } } protected void forwardPreviewNotAvailable(HttpServletRequest request, HttpServletResponse response) { try { RequestDispatcher rd = request.getRequestDispatcher("/skin/images/preview_na.gif"); rd.forward(request, response); } catch (Exception e) { e.printStackTrace(); } } public static void downloadDocument(HttpServletRequest request, HttpServletResponse response, InputStream is, String filename) throws FileNotFoundException, IOException { String mimetype = MimeType.getByFilename(filename); response.setContentType(mimetype); OutputStream os = response.getOutputStream(); int letter = 0; try { while ((letter = is.read()) != -1) os.write(letter); } finally { os.flush(); os.close(); is.close(); } } protected void document2swf(File swfCache, String extension, InputStream docInput) throws IOException { File tmpPdf = null; try { tmpPdf = File.createTempFile("preview", ".pdf"); if ("pdf".equals(extension.toLowerCase())) { FileOutputStream fos = null; try { fos = new FileOutputStream(tmpPdf); IOUtils.copy(docInput, fos); fos.flush(); } catch (Throwable e) { } finally { IOUtils.closeQuietly(fos); } } else { img2pdf(docInput, extension, tmpPdf); } pdf2swf(tmpPdf, swfCache); } finally { if (tmpPdf != null) FileUtils.deleteQuietly(tmpPdf); } } protected void img2pdf(InputStream is, String extension, File output) throws IOException { File tmp = File.createTempFile("preview", extension); String inputFile = tmp.getPath() + "[0]"; FileOutputStream fos = null; try { fos = new FileOutputStream(tmp); IOUtils.copy(is, fos); fos.flush(); fos.close(); ContextProperties conf = (ContextProperties)Context.getInstance().getBean(ContextProperties.class); ProcessBuilder pb = new ProcessBuilder(new String[] { conf.getProperty(IMG2PDF), inputFile, " -compress None -quality 100 ", output.getPath() }); Process process = pb.start(); Thread wrapper = new Thread(process) { public void run() { try { this.val$process.waitFor(); } catch (InterruptedException e) { } } }; wrapper.start(); for (int i = 0; i < 10; ++i) if (wrapper.isAlive()) try { Thread.sleep(1000L); } catch (InterruptedException e) { } wrapper.interrupt(); process.destroy(); } catch (Throwable e) { } finally { IOUtils.closeQuietly(fos); tmp.delete(); } } protected void pdf2swf(File input, File output) throws IOException { ContextProperties conf = (ContextProperties)Context.getInstance().getBean(ContextProperties.class); String[] cmd = composeCmd(conf.getProperty(PDF2SWF), input, output); BufferedReader stdout = null; Process process = null; try { ProcessBuilder pb = new ProcessBuilder(cmd); process = pb.start(); stdout = new BufferedReader(new InputStreamReader(process.getInputStream())); while (stdout.readLine() != null); process.waitFor(); } catch (Throwable e) { output.delete(); log.error("Error in PDF to SWF conversion", e); } finally { if (process != null) process.destroy(); IOUtils.closeQuietly(stdout); } } protected String[] composeCmd(String command, File input, File output) { String[] standardCmd = { command, "-f", "-T 9", "-t", "-G", "-s storeallcharacters", input.getPath(), "-o", output.getPath() }; String[] imgCmd = { command, "-T 9 -q 30", input.getPath(), "-o", output.getPath() }; if (command.endsWith("convert")) return imgCmd; return standardCmd; } }
相关推荐
2023年全国大学生英语竞赛样题(C类)样题答案及听力原文
出纳考核表
基于多种天气因素的光伏电站太阳能辐射量预测系统——采用人工神经网络与离线优化算法,MATLAB代码:考虑多种天气条件下光伏电站太阳能辐射量预测 关键词:辐射量预测 光伏预测 多种天气因素 参考文档:《Solar Radiation Prediction and Energy Allocation for Energy Harvesting Base Stations》 仿真平台:MATLAB+CPLEX 平台 优势:代码具有一定的深度和创新性,注释清晰,非烂大街的代码,非常精品 主要内容:代码主要做的是如何利用预测光伏电站太阳能辐射量的问题,利用人工神经网络对对其内太阳辐射量进行预测,并对无云天气以及多云天气进行了分别讨论,与线性模型相比该模型具有更好的性能,除此之外,代码还研究了太阳能的分配问题,采用离线优化算法和四种在线启发式算法分别进行分配策略的优化,并利用太阳辐射数据评估了算法的性能。 该代码适合新手学习以及在此基础上进行拓展,代码质量非常高,出图效果极佳 ,核心关键词: 1. 光伏电站太阳能辐射量预测 2. 多种天气因素 3. 人工神经网络 4. 预测模型 5. 线性
数据结构实验实习指导书(c语言)
"lyh不会打代码"生存小有戏改版
站群系统/泛目录站群源码/泛站群cms系统【小说泛目录站群源码】 效果截图和演示https://www.lxsjfx.cn/3181.html 绿茶小说站群2.x-秒收隔天速出权重-小说流量稳定收割机-精品轻量级PHP站群系统站群系统,小说行业专用引流精品站群,绿茶小说站群为独立站群系统(无需依托CMS),独立的整篇小说优化内容库(拒绝句子拼凑),模板自适应PC端和移动端,流量一起做! 1、绿茶小说站群为独立站群系统(无需依托CMS) 2、对域名要求不高,百元域名均可操作 3、独立的首页、列表页、小说阅读页 4、独立的整篇小说优化内容库(拒绝句子拼凑) 5、可自定页面后缀(html、shtml、xml…..) 6、拒绝全站404跳转到内容页 7、还有强大的网站XML地图功能,便于链接提交 8、模板自适应PC端和移动端,流量一起做! 站群系统/泛目录站群源码/泛站群cms系统【小说泛目录站群源码】
IQC检验员(来料检验员)绩效考核表
2024年全球AI应用趋势年度报告
安全生产绩效考核表
04-【标准制度】公司 KPI 绩效考核流程
第14讲:深入理解指针(4)
考虑用户舒适度的冷热电多能互补综合能源系统优化调度模型:结合PMV衡量与碳排放交易机制的MATLAB仿真实现,考虑用户舒适度的冷热电多能互补综合能源系统优化调度 MATLAB代码:考虑用户舒适度的冷热电多能互补综合能源系统优化调度 关键词:用户舒适度 综合能源 PMV 优化调度 参考文档:《冷热电气多能互补的微能源网鲁棒优化调度》基础模型加舒适度部分模型; 仿真平台:MATLAB+yalmip+cplex 主要内容:代码主要做的是考虑用户舒适度的冷热电多能互补综合能源系统优化调度模型,在传统的冷热电联供型综合能源系统的基础上,进一步考虑了热惯性以及用户的舒适度,并用预测平均投票数PMV对用户的舒适度进行衡量,且通过改变PMV的数值,可以对比不同舒适度要求对于综合能源系统调度结果的影响。 同时,代码还补充性的考虑了碳排放交易机制,并设置经济性最优以及碳排放最优两种对比场景,从而丰富算例,效果非常明显。 使用matlab+yalmip+cplex进行代码的 ,考虑用户舒适度; 综合能源系统; PMV; 优化调度; 冷热电多能互补; 碳排放交易机制。,考虑用户舒适度与碳排放交易的冷热电多能
内容概要:本文详细阐述了利用ANSI转义码在Xshell脚本中进行光标的灵活操控方法。介绍了从光标的隐藏、定位(特定行/列)、保存位置、复位、清除以及显示控制的基本命令,重点描述了如何使用以上提到的功能构建实用的UI组件——文本模式下工作的进度条。文中提供的简单实例演示了一个完整的循环逻辑,它能动态刷新视图,在每一次迭代中根据程序实际进展更新屏幕上的表现形式,同时保持界面美观性和易读性。并且提到由于不同的终端可能有不同的兼容情况,脚本的跨环境行为可能存在细微差别。 适合人群:初学者至中级水平的技术爱好者或者软件开发者,尤其是希望深入掌握Linux环境下命令行工具使用者。 使用场景及目标:① 学习并理解Xshell脚本里涉及的ANSI转义码概念和技术点,从而增强对终端界面元素(如菜单、提示符等)的操作技能;② 掌握通过程序手段构造动态变化的CLI应用程序技巧,比如实时跟踪长时间任务的状态; 阅读建议:本文不仅包含了具体命令的学习,更展示了它们是如何组合起来创造复杂视觉反馈机制的案例研究。对于想进一步探索终端开发领域的程序员而言,这无疑提供了很好的入门指引材料。考虑到各种操作系统上支持度的问题,在测试代码之前应当确认自己的工作平台已经正确配置好。
内容概要:该文档详细探讨了针对达梦数据库的各种性能优化技术和处理方法。具体包括回表问题及其解决措施如覆盖索引和FAST POOL机制;变量窥探、统计数据收集优化方法,例如设置统计桶数量和采样子表数目;视图上拉、JOIN优化、EXISTS与NOT EXISTS子查询重写策略;分区裁剪和多KEY哈希等方面的深入探讨,提供了多个具体的优化技巧,旨在帮助用户有效提升SQL执行性能,并解决了多种可能导致性能下降的关键因素。 适合人群:数据库管理员、运维工程师及具有一定经验的数据开发人员等,尤其是负责使用和维护基于达梦数据库系统的技术团队成员。 使用场景及目标:适用于希望通过改善查询速度来提高系统响应时间的专业人士;需要处理大型数据库或复杂查询的任务;或是正在寻找改进现有数据库架构的方法的机构。它还特别针对那些希望确保最优硬件资源利用率的人群。 其他说明:本文档不仅介绍了理论性的背景知识和技术细节,还包括了大量的实际案例演示和参数调整建议,方便读者理解和实践这些优化方法。此外,针对每种优化策略提供了详细的指导,使得即使是对某些高级特性较为陌生的读者也能顺利掌握关键技能。
54 -营销部经理绩效考核表1
外贸部绩效考核表格
选择使用如下方法,增加系统盘自由空间。最简模式:完成2、4②,即可全面清除电脑垃圾、痕迹。 1、将“桌面”、“我的文档”以及系统盘的其它地方保存的个人文件资料,转移到别的盘保存。 2、双击桌面“计算机”,“系统磁盘”右键--属性--常规/工具:
岗位绩效考核评定表excel表格模板
1、文件内容:apache-commons-vfs-javadoc-2.0-11.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/apache-commons-vfs-javadoc-2.0-11.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装