是否可以使用Coldfusion 8从PDF文件创建缩略图?

时间:2009-12-23 19:24:44

标签: pdf coldfusion

是否可以使用Coldfusion 8从PDF文件创建缩略图? (给定页面的缩略图,默认为第1页)

2 个答案:

答案 0 :(得分:6)

从PDF文档中的页面生成缩略图

<cfpdf
    required
    action = "thumbnail"
    source = "absolute or relative pathname to a PDF file|PDF document variable|
        cfdocument variable"
    optional
    destination = "directory path where the thumbnail images are written"
    format = "png|jpeg|tiff"
    imagePrefix = "string used as a prefix in the output filename"
    overwrite = "yes|no"
    password = "PDF source file password"
    pages = "page or pages to make into thumbnails"
    resolution= "low|high"
    scale = "percentage between 1 and 100"
    transparent = "yes|no">

http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_p-q_02.html

http://cfquickdocs.com/cf8/?getDoc=cfpdf#cfpdf

答案 1 :(得分:0)

Adob​​e在接管Macromedia后,为ColdFusion中的PDF添加了大量支持。因此,您还可以打印PDF并对其进行操作。