PDF Thumbnails
Create image previews from PDF files.
This Flow generates an image thumbnail from PDF using the command-line tool pdftoppm
.
Important Note¶
As the Flow is using the "Shell Command" action, you must make sure to install the pdftoppm binary on the machine, and declare it manually in the Cells configuration to allow Cells Flows user to acces it. This is done using the configuration key "defaults/schedulerShellAllowedCommands", that must contains a {key:Label} object. It will look like :
How It Works¶
The Flow is composed of two branches to handle the complete files lifecycle:
- The Create/Update event triggers a call to pdfppm to associate a preview image with the PDF. It is attached to the original file as "ImagePreview" metadata.
- The Delete event will clean the associated thumbnail if it exists.
Parameters¶
No parameters defined
Trigger Type¶
Event-based
JSON Representation¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|