- 浏览: 1091960 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (290)
- php (65)
- javascript (36)
- html5 (31)
- thinkphp (9)
- mysql (16)
- jquery (13)
- node.js (9)
- css (9)
- android 开发 (8)
- flex (5)
- java (3)
- apache (8)
- linux (8)
- git (5)
- web (5)
- wordpress (9)
- mongodb (2)
- redis (5)
- yaf (6)
- python (4)
- big data (1)
- sphinx (1)
- html (1)
- bootstrap (1)
- vue (1)
- laravel (1)
- test (0)
最新评论
-
July01:
推荐用StratoIO打印控件,支持网页、URL、图片、PD、 ...
如何解决非IE浏览器的web打印 -
flashbehappy:
同一个视频,有mp4,ogg两种格式的。在chrome,fir ...
firefox chrom safari 对video标签的区别 -
xmdxzyf:
可以在网站(www.sosoapi.com)上试下在线表单方式 ...
用swagger-php/ui做API测试 -
flex_莫冲:
a2631500 写道"看了源码,设置Backbon ...
backbone与php交互 -
a2631500:
"看了源码,设置Backbone.emulateJS ...
backbone与php交互
介绍个在线PDF处理工具
http://smallpdf.com/cn/pdf-to-jpg
瑞士开发的。
PDF转JPG的质量非常高。imagemagick之类的根本没法比。
介绍:http://www.aspirantzhang.com/network/smallpdf.html
它用的转换工具
转JPG的librarys
http://www.pdf-tools.com/
说明书
http://www.pdf-tools.com/public/downloads/whitepapers/Whitepaper-Signature_Service-EN.pdf
转成word的librarys
http://www.soliddocuments.com/products.htm?product=SolidFramework
这是.net开发的。
pdf-tools支持commond line (shell,不支持window)执行
以下是常用命令
licmgr list 显示所有已安装的license
Install new license key
licmgr store X-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
Delete old license key
licmgr delete X-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
添加参数-s 可以限定使用范围
• g: For all users
• u: Current user
pdf2img 命令使用
pdf2img input.pdf input.pdf是pdf路径,若不指定输出的图片类型和名称,则默认是输入的pdf文件名,文件格式是tif。例如input.tif
pdf2img –lk X-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX input.pdf output.tif
指定license key输出
pdf2img input.pdf output.jpg 输出格式是jpg
pdf2img input.pdf myfolder\output.jpg 指定输出目录
pdf2img "My File.pdf" "My Documents\output.jpg" 如果目录包含空格则必须加上引号
pdf2img -1 input.pdf output%04d.png 如果pdf包含多个页面,则每个页面输出一个png。output0001.png, output0002.png, output0003.png, etc.
pdf2img A*.pdf 转换多个命名规范的PDF
pdf2img *01.pdf
for %i in (*.pdf) do pdf2img -v %i %~ni.tif 也可以用循环语句
-sp 600 480 -f 指定像素输出。如果PDF默认的图片比例跟指定的输出像素比例不匹配,则会加上空白边
如果想匹配PDF默认的图片比例,则只需要输入一个,另一个用0代替
pdf2img -d 300 -1 -sp 1536 0 -f 1739.pdf out%04d.jpg
-s 600 480 -f 按指定point(点)计算方式来生成图片(If the dimensions are set in points, the dimensions in pixel are calculated depending on the resolution.)这种方式依赖于dpi。dpi越高图片越大
-d 75 更改DPI
压缩算法类型
CCITT Group 3, Group 3-2D
CCITT Group 3 is the predecessor to CCITT Group 4, it is a simpler algorithm that normally results in a lower compression ratio.
CCITT Group 4
CCITT Group 4 is the standard compression for bi-level TIFF images (i.e. facsimile).
LZW
LZW (Lempel-Ziv-Welch) compression is a lossless compression algorithm for images. Please consult the copyright laws of your country prior to using this compression algorithm.
JPEG
TIFF allows images to be compressed with JPEG, which is a lossy compression algorithm. JPEG provides a high compression ratio for 8 and 24 bit images. It is best suited for TIFFs containing photographs and little or no text.
ZIP (Flate)
ZIP is a lossless compression algorithm. It is useful for the compression of large images with no loss in quality.
Flate compression (also used by the ZIP format) and JPEG compression can be used for color or grey scale images. CCITT Group 3, 3-2D and 4 as well as Flate can be used for black and white images. Example: Apply Flate compression to a TIFF image. -z
-z:无损压缩
-g4:黑白压缩。(例如扫描传真)CCITT Group 4 is the standard compression for bi-level images (i.e. facsimile).
-j:使用jpg压缩算法
-j6:旧的jpg压缩算法
-l: LZW (Lempel-Ziv-Welch)
-g3:Compression CCITT Group 3.默认算法。失真较少
-b 设置point的像素值。ie:8,1,2,24(真彩色)
pdf2img -b 8 input.pdf output.jpg 生成灰色的像素图片
-f fit。使生成的图片匹配指定的尺寸
pdf2img -s 800 600 -f input.pdf output.tiff
-q 85 圖片質量參數
Increase the DPI value to increase the resolution. This is done with the switch -d. For lossy compression algorithms, such as JPEG, increase the quality parameter, e.g. -q 85.
http://smallpdf.com/cn/pdf-to-jpg
瑞士开发的。
PDF转JPG的质量非常高。imagemagick之类的根本没法比。
介绍:http://www.aspirantzhang.com/network/smallpdf.html
它用的转换工具
转JPG的librarys
http://www.pdf-tools.com/
说明书
http://www.pdf-tools.com/public/downloads/whitepapers/Whitepaper-Signature_Service-EN.pdf
转成word的librarys
http://www.soliddocuments.com/products.htm?product=SolidFramework
这是.net开发的。
pdf-tools支持commond line (shell,不支持window)执行
以下是常用命令
licmgr list 显示所有已安装的license
Install new license key
licmgr store X-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
Delete old license key
licmgr delete X-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
添加参数-s 可以限定使用范围
• g: For all users
• u: Current user
pdf2img 命令使用
pdf2img input.pdf input.pdf是pdf路径,若不指定输出的图片类型和名称,则默认是输入的pdf文件名,文件格式是tif。例如input.tif
pdf2img –lk X-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX input.pdf output.tif
指定license key输出
pdf2img input.pdf output.jpg 输出格式是jpg
pdf2img input.pdf myfolder\output.jpg 指定输出目录
pdf2img "My File.pdf" "My Documents\output.jpg" 如果目录包含空格则必须加上引号
pdf2img -1 input.pdf output%04d.png 如果pdf包含多个页面,则每个页面输出一个png。output0001.png, output0002.png, output0003.png, etc.
pdf2img A*.pdf 转换多个命名规范的PDF
pdf2img *01.pdf
for %i in (*.pdf) do pdf2img -v %i %~ni.tif 也可以用循环语句
-sp 600 480 -f 指定像素输出。如果PDF默认的图片比例跟指定的输出像素比例不匹配,则会加上空白边
如果想匹配PDF默认的图片比例,则只需要输入一个,另一个用0代替
pdf2img -d 300 -1 -sp 1536 0 -f 1739.pdf out%04d.jpg
-s 600 480 -f 按指定point(点)计算方式来生成图片(If the dimensions are set in points, the dimensions in pixel are calculated depending on the resolution.)这种方式依赖于dpi。dpi越高图片越大
-d 75 更改DPI
压缩算法类型
CCITT Group 3, Group 3-2D
CCITT Group 3 is the predecessor to CCITT Group 4, it is a simpler algorithm that normally results in a lower compression ratio.
CCITT Group 4
CCITT Group 4 is the standard compression for bi-level TIFF images (i.e. facsimile).
LZW
LZW (Lempel-Ziv-Welch) compression is a lossless compression algorithm for images. Please consult the copyright laws of your country prior to using this compression algorithm.
JPEG
TIFF allows images to be compressed with JPEG, which is a lossy compression algorithm. JPEG provides a high compression ratio for 8 and 24 bit images. It is best suited for TIFFs containing photographs and little or no text.
ZIP (Flate)
ZIP is a lossless compression algorithm. It is useful for the compression of large images with no loss in quality.
Flate compression (also used by the ZIP format) and JPEG compression can be used for color or grey scale images. CCITT Group 3, 3-2D and 4 as well as Flate can be used for black and white images. Example: Apply Flate compression to a TIFF image. -z
-z:无损压缩
-g4:黑白压缩。(例如扫描传真)CCITT Group 4 is the standard compression for bi-level images (i.e. facsimile).
-j:使用jpg压缩算法
-j6:旧的jpg压缩算法
-l: LZW (Lempel-Ziv-Welch)
-g3:Compression CCITT Group 3.默认算法。失真较少
-b 设置point的像素值。ie:8,1,2,24(真彩色)
pdf2img -b 8 input.pdf output.jpg 生成灰色的像素图片
-f fit。使生成的图片匹配指定的尺寸
pdf2img -s 800 600 -f input.pdf output.tiff
-q 85 圖片質量參數
Increase the DPI value to increase the resolution. This is done with the switch -d. For lossy compression algorithms, such as JPEG, increase the quality parameter, e.g. -q 85.
发表评论
-
将博客搬至CSDN
2017-03-28 09:07 649将博客搬至CSDN,尽情期待 -
laravel入門
2017-03-03 16:31 6531 全局安裝 composer global require ... -
导出csv,excel等文件,文件内容错误的问题,需要加上ob_end_clean
2017-03-02 11:54 1566见这个问题: http://stackoverflow.com ... -
facebook graph api从2.6转到2.8的问题处理
2017-02-15 16:30 1172之前一直用facebook 2.6的api,现在想升级到2.8 ... -
php从mysql读取超过200W行的表
2017-01-04 10:09 651需要从一个大表,如user表中读取所有user数据再做整理并導 ... -
一个session失效的伪命题
2016-12-08 18:33 755最近遇到一个问题,一个ajax请求会调用已存在的session ... -
tp5与tp3的区别
2016-11-21 14:33 1557TP5作了很大的改变,更加灵活,没那么臃肿了,加入了一些令人振 ... -
推送消息能不能区分禁止通知和卸载两种类型?
2016-11-18 10:54 1485消息推送ios用了apns,android用的是gcm。推送失 ... -
yaf在命令行模式下出现PHP Fatal error: Class 'Yaf_Application' not found的解决办法
2016-11-11 16:42 2407为了跑个yaf的crontab,执行时报错: PHP Fata ... -
推送emoji表情乱码的解决方法
2016-11-04 17:44 1979推送内容如果包含了emoji表情,需要做以下修改 1 mysq ... -
YAF访问图片等静态资源禁止调用YAF框架的解决办法
2016-10-20 17:55 1633当访问yafpublic 目录下的某个静态资源时,依然会访问y ... -
在线自动协同编辑文本的实现方案
2016-10-14 16:49 1987要实现可以自动在线协同编辑文本的功能。就类似google do ... -
Paypal支付跳转失败的原因及解决办法
2016-09-18 14:27 3625遇到在跳转到paypal支付页面的时候出现502 bad ga ... -
文件格式不是unix导致sed,cat等读取文件后无法正常退出
2016-08-30 14:44 781#!/bin/bash bucket_config=&quo ... -
varnish的使用和PHP清除缓存的技巧
2016-08-11 14:10 1293官網地址 https://www.varnish-cache. ... -
TP在APP_DEBUG=false的情況下,CLI和WEBSITE會共用同一個~runtime.php導致出錯的問題解決辦法
2015-12-14 11:43 847TP若使用了 define('APP_DEBU ... -
node.js获取php curl post数据req.body为空的处理
2015-09-22 11:43 3976node使用了express4和body-parser来解析p ... -
yaf namespace的使用
2015-08-27 11:32 2325yaf支持namespace。在php.ini 中添加 yaf ... -
yaf 添加phpunittest
2015-08-21 11:16 644首先要讓php在cli下支持yaf wamp下打開D:/wam ... -
thinkphp socket to support sso (php socket 不稳定,不建议使用)
2015-08-18 14:06 2017cli code #!/bin/bash filep ...
相关推荐
PDF转JPG工具是一种实用软件,它专门设计用于将PDF文档转换为JPG图像格式。在数字时代,这种工具在处理图像丰富的PDF文件时尤其有用,例如,如果你需要将一份包含图片的报告或一份设计稿快速转化为易于共享或上传到...
PDF转JPG工具是一款实用的软件,专门设计用于将PDF文档转换为JPG图片格式,且转换过程中不添加任何水印。在日常工作中,我们常常遇到需要将PDF文档中的信息以图片形式分享或保存的情况,这时这样的工具就显得非常...
PDF转JPG工具
PDF转JPG工具是一种实用软件,它专门设计用于将PDF文档转换成JPEG(或简称JPG)图像格式。这种转换在许多场景下都非常有用,比如处理包含大量图像的PDF文件、便于在网络上分享或者在不支持PDF查看的设备上查看内容。...
除了这个特定的软件之外,还有许多其他免费和付费的PDF转JPG工具可以选择,例如Adobe Acrobat、在线转换网站和开源软件如PDFtoImage。每种工具都有其独特优势,比如Adobe Acrobat提供更高级的编辑功能,而在线转换...
有了PDF转JPG工具,您相当于拥有了PDF转JPG转换器,PDF转BMP转换器,PDF转GIF转换器,PDF转PNG转换器,PDF转TIF转换器。 现在就下载PDF转JPG工具吧! 1XG PDF转JPG工具 v2.2版本更新 修复页面范围功能卡死问题 1...
PDF转JPG工具是一种实用软件,它专门设计用于将PDF文档转换为JPG图像格式。在数字时代,这种转换需求非常普遍,因为不同的情景可能需要不同的文件类型。PDF(Portable Document Format)是一种通用的文件格式,能...
总之,将PDF转换为JPG是一种常见的文件处理需求,通过使用免费的PDF转JPG工具或在线服务,我们可以轻松实现这一目标。请确保选择安全可靠的方法,并根据具体需求调整转换设置,以获得最满意的结果。
在需要将PDF中的页面或图像提取为图片时,PDF转JPG工具就显得尤为重要。 首先,我们要理解PDF文件的特性。PDF格式设计的主要目标是保证文档在不同设备和操作系统间的一致性展示。它支持文字、图像、超链接、表格、...
PDF转JPG工具有很多种,既有在线服务也有桌面软件。选择哪种方式主要取决于你的需求,例如隐私保护、文件大小限制和转换速度等因素。以下是一些常见的PDF转JPG工具: 1. Adobe Acrobat Pro:Adobe的旗舰产品,提供...
PDF转JPG工具是一种实用软件,它允许用户将PDF文档转换为JPG图像格式,方便在不同的场景下使用。PDF(Portable Document Format)是Adobe公司开发的一种文件格式,广泛用于电子文档的分享与存储,因为它可以保留原始...
PDF转JPG工具通常具有以下功能和特点: 1. **支持多种格式**:这些工具不仅能将PDF转换为JPG,还可能支持转换为其他图像格式,如PNG、BMP或GIF。 2. **批量转换**:用户可以一次性上传多个PDF文件,进行批量转换,...
PDF转JPG工具是一款小巧而实用的软件,主要用于将PDF文档转换为JPG图像格式。在许多场景下,用户可能需要将PDF文件转换为图片,例如为了方便在社交媒体上分享、在网页上嵌入或者在不支持PDF查看的设备上浏览。这款...
《批量PDF转jpg工具 2.0:高效转换与实用指南》 在信息化时代,PDF文件因其优秀的格式保持性和安全性,被广泛应用于文档共享和存储。然而,在某些场景下,如网页上传、社交媒体分享或是移动端查看,我们可能需要将...