`
61party
  • 浏览: 1101224 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

FlexPager Developer Guide(FlexPager使用指南)

 
阅读更多

资料列表:

源码下载:http://code.google.com/p/flexpaper/

官方文档:http://flexpaper.devaldi.com/docs.htm

SWF工具下载:http://www.swftools.org/download.html

1、将PDF图片等转换成SWF(SWF Tools)

下载http://www.swftools.org/swftools-0.9.1.exe后安装到C:\Program Files\SWFTools

有图形化工具,但考虑到我们要用程序来调用,所以使用命令行。

cmd

cd/d C:\Program Files\SWFTools

rem查看帮助

pdf2swf–h

rempdf转swf(整个文件的形式)

pdf2swfe:\mysql.pdf –o e:\mysql.swf -T 9 -f

图片转换工具:gif2swf,jpeg2swf,png2swf,可用于本项目的图片转swf

具体参数见附录

2、使用FlexPager显示SWF

下载http://flexpaper.googlecode.com/files/FlexPaper_1.4.7_flash.zip

解压到任意的地方(最好用nginx,iis,或tomcat也行发布下,访问地址为http://localhost)

代码我已经给出了,你们测试一下

3、如何使用Java执行命令行以实现转换

3.1、思路1:上传时即转换(用户量少,文档少,用户体验好)

3.2、思路2:做成定时任务转换(用户量大,文档大,用户不能马上查看效果)

编程要点:如何调用命令行?

final Process process =Runtime.getRuntime().exec(cmd),核心代码基本上就这一句了,cmd是命令行。

4、如何通过编程实现不同平台下的转换

编程要点:在类Unix(包含Linux)和Widows平台都能跑:

可以使用apache commons lang3中的

org.apache.commons.lang3.SystemUtils.IS_OS_UNIX

org.apache.commons.lang3.SystemUtils.IS_OS_WINDOWS

来判断不同的平台。

附录A

加 “-T 9” 参数,设置输出版本为flash9,解决PDF文件只有一页,生成的swf不能播放的问题。(网上找的未验证,具体参数见附录B)

注意-T 10 不行的,有问题,这个我试过,可以下最新trunk上的pdf2swf试试。

有时会出现转换错误,不要管,尽量用命令行。

附录B:pdf2swf参数参考(pdf2swf -h 查看)

-h, –help Print short help message and exit 打印帮助信息

-V, –version Print version info and exit 打印版本号

-o, –output file.swf Direct output to file.swf. If file.swf contains ‘13568621′ (file13568630.swf), then each page指定输出的swf文件名

-p, –pages range Convert only pages in range with range e.g. 1-20

or1,4,6,9-11 or

指定转换的页面范围,使用的页码描述方法与打印机打印文件时候的选页一样

-P, –password password Use password for deciphering the pdf.指定打开pdf的密码

-v, –verbose Be verbose. Use more than one -v for greater effect.转换时输出详细的内容

-z, –zlib Use Flash 6 (MX) zlib compression.使用Flash6的zlib压缩机制

-i, –ignore Allows pdf2swf to change the draw order of the pdf. This maymake the generated允许程序修改pdf的绘制顺序,可能会导致结果与原来有差异

-j, –jpegquality quality Set quality of embedded jpeg pictures toquality. 0 is worst (small), 100 is best (big). (default:85)设置转换其中的jpeg图片的质量,从0到100,默认值是85。

-s, –set param=value Set a SWF encoder specific parameter. See pdf2swf -shelp for more information. 设置SWF转码时候的参数,具体参数可以用pdf2swf -s help获取

-w, –samewindow When converting pdf hyperlinks, don’t make the links open a new window. 设置转换后的swf打开原pdf中的连接时使用相同的窗口

-t, –stop Insert a stop() command in each page. 在每页结尾添加一个stop()命令

-T, –flashversion num Set Flash Version in the SWF header to num. 设置SWF所使用的flash版本号

-F, –fontdir directory Add directory to the font search path. 指定字体文件所在路径

-b, –defaultviewer Link a standard viewer to the swf file. 指定默认的swf导航文件,用来翻页、放大缩小等等

-l, –defaultloader Link a standard preloader to the swf file which willbe displayed while the main swf is loading. 指定默认的swf加载文件,用来显示加载进程效果

-B, –viewer filename Link viewer filename to the swf file. 指定swf导航文件,作用同-b

-L, –preloader filename Link preloader filename to the swf file. 指定swf加载文件,作用同-l

-q, –quiet Suppress normal messages. Use -qq to suppress warnings, also. 不打印普通信息,用-qq就不打印警告信息。

-S, –shapes Don’t use SWF Fonts, but storeeverything as shape. 不使用字体,所有都转为形状。

-f, –fonts Store full fonts in SWF. (Don’t reduceto used characters). 在swf中保存全部字体。

-G, –flatten Remove as many clip layers from file as possible. 在文件中尽量去除影片层,合并它们

-I, –info Don’t do actual conversion, justdisplay a list of all pages in the PDF. 不做实际转换,仅显示PDF的信息。

-Q, –maxtime n Abort conversion after n seconds. Only available on Unix. 如果运行时间超时则退出。

附录C :SystemUtils参考

org.apache.commons.lang3.SystemUtils参考

IS_OS_UNIX

publicstatic final boolean IS_OS_UNIX

Istrue if this is a UNIX like system, as in any of AIX, HP-UX, Irix, Linux,MacOSX, Solaris or SUN OS.

Thefield will return false if OS_NAME is null.

Since:

2.1

IS_OS_WINDOWS

publicstatic final boolean IS_OS_WINDOWS

Istrue if this is Windows.

Thefield will return false if OS_NAME is null.

Since:

2.0

附录D:官方文档参考

1、使用简介

http://flexpaper.devaldi.com/docs.jsp

2、ConvertingDocuments,注意那几个参数

http://flexpaper.devaldi.com/docs_converting.jsp

3、LargeDocuments,大文件如何转换

http://flexpaper.devaldi.com/docs_largedocs.jsp

4、完整参数参考,最全最新的最权威的

http://flexpaper.devaldi.com/docs_parameters.jsp

分享到:
评论

相关推荐

    WireShark 开发者指南(developer-guide)

    WireShark 开发者指南(developer-guide)

    MySQL Connector .Net Developer Guide

    综上所述,*** Developer Guide是一份面向.NET开发人员的全面指南,其内容不仅包括安装和配置指南,也提供了丰富的实际操作示例和高级用法教程,旨在帮助开发者快速掌握使用MySQL数据库进行.NET应用开发的方方面面。

    MySQL Connector/J Developer Guide

    根据提供的文件内容,以下是关于MySQL Connector/J Developer Guide(MySQL JDBC Developer Guide)的知识点总结: 1. MySQL Connector/J是MySQL服务器通信的JDBC驱动程序。JDBC(Java Database Connectivity)是一...

    JFreeChart developer guide Source code

    这份"JFreeChart developer guide Source code"是开发者深入理解 JFreeChart 内部工作原理和实现机制的重要参考资料。 1. **JFreeChart 概述** JFreeChart 提供了一套完整的 API,使得开发者可以轻松创建动态、...

    TWaver HTML5 Developer Guide

    文档的版权声明和版权所有者信息表明了TWaver HTML5 Developer Guide内容的版权归属和使用限制,强调了文档包含的专有信息,未经授权不得复制、泄露或用于商业目的。所有商标、品牌和产品名称都是其各自所有者的商标...

    C# MySQL Connector/Net Developer Guide

    MySQL Connector/Net Developer Guide是一份指导文档,它旨在帮助开发者了解如何安装和配置MySQL Connector/Net,这是一个使.NET应用程序能够与MySQL服务器通信的驱动程序。文档内容广泛,包括安装指南、教程和...

    flex3开发者指南Flex3 developer guide.rar

    flex3开发者指南Flex3 developer guide.rar

    jboss jbpm 5 developer guide

    本书《jBPM5 Developer Guide》是一本专注于JBoss jBPM5框架的Java开发者指南,由Mauricio Salatino和Esteban Aliverti撰写,2012年由Packt Publishing出版。jBPM5是JBoss企业业务流程管理(Business Process ...

    jBPM6 Developer Guide

    《jBPM6 Developer Guide》是一本专注于jBPM6开发的指南,旨在帮助开发者深入理解和熟练运用这个流程管理框架。jBPM6是Java Business Process Management(业务流程管理)的开源实现,由JBoss社区维护,是Red Hat ...

    JDK 12 Documentation - Java Core Libraries Developer Guide

    JDK 12 Documentation - Java Core Libraries Developer Guide JDK 12 Documentation - Java Core Libraries Developer Guide JDK 12 Documentation - Java Core Libraries Developer Guide JDK 12 Documentation - ...

    Adreno openg es developer guide.pdf

    标题“Adreno OpenGL ES Developer Guide”和描述“Adreno OpenGL ES Developer Guide”表明本文档是一本关于Adreno图形处理器(GPU)和OpenGL ES图形API的开发者指南。Adreno是Qualcomm公司生产的一系列GPU,通常...

    ARM Developer Suit Developer Guide.pdf

    - 介绍ARM Developer Guide的主要内容及目的,帮助开发者了解如何使用ARM Developer Suite进行高效编程。 - **通用编程问题**(第1章): - 讨论在使用ARM架构进行软件开发时可能遇到的一些普遍问题,如内存管理、...

    MySQL Connector/NET Developer Guide.pdf

    7. **文档结构**:手册的目录结构清晰,包含前言、法律通知、介绍、版本信息、安装过程、使用指南等部分,方便读者快速定位所需信息。 总的来说,MySQL Connector/NET Developer Guide是一本全面的指南,无论你是...

    jBPM Developer Guide

    ### jBPM Developer Guide 关键知识点解析 #### 一、jBPM简介与背景 - **定义**: jBPM(Java Business Process Management)是JBoss(现在隶属于Red Hat)提供的一个开源业务流程管理(BPM)框架。它允许开发人员...

    jBPM Developer Guide.pdf

    《jBPM Developer Guide》是一本专为Java开发者撰写的关于JBoss Business Process Management框架的详细指南。本书由Mauricio "Salaboy" Salatino撰写,版权属于Packt Publishing,并于2009年首次出版。本书涵盖了...

    JFreeChart Developer Guide 1.0.6(Including Demo source code)

    《JFreeChart开发者指南1.0.6》是Java领域中...通过《JFreeChart Developer Guide 1.0.6》和配套的示例代码,开发者可以掌握JFreeChart的使用技巧,提升项目中的数据可视化效果,从而更好地呈现数据,增强用户体验。

    JFreeChart developer guide 配套的源代码

    **JFreeChart 开发者指南源代码解析** JFreeChart 是一个开源的 Java 图形库,它提供了丰富的图表类型,包括折线图、柱状图、饼图、散点图等,广泛应用于数据分析和可视化。这个压缩包包含了 JFreeChart 的开发者...

    Jfreechart developer guide

    **正文** 《JFreeChart开发者指南》是一本深入解析JFreeChart库的宝贵资源,它...通过深入阅读《JFreeChart Developer Guide Version 1.0.4》,你将能够有效地利用JFreeChart构建出功能强大、视觉效果出色的图表应用。

    Azure开发者指南 Azure Developer Guide

    《Azure开发者指南》是一本针对开发者全面介绍Azure云平台的书籍,旨在帮助开发者快速了解和掌握Azure平台的使用,以便构建创新的应用程序。在云计算的时代背景下,Azure作为一个专门为开发者设计的云平台,提供了一...

Global site tag (gtag.js) - Google Analytics