Page Properties | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||
Resources & Remarks Modification History
|
Excerpt |
---|
Various types of renditions are available for binary content files to provide their information in different formats. |
...
Renditions are alternative representations of the content assigned to DMS objects. As such, they are only retrievable with a read
permission for the concrete object instances.
Please note that a rendition is not an exact representation of the original file. Deviations to the original file may arise and are NOT considered as bugs in our software.
Typical use cases for the individual kinds of rendition types are:
kind of rendition | typical Rendition type | Typical use cases |
---|---|---|
text | full-text search | |
content preview | ||
slide | thumbnails for content visualization within hit lists in client applications |
...
Note: The responsible services are enabled in the default configuration but the rendition repository has to be configured manually.
kind of renditionRendition type | text | slide | |
---|---|---|---|
service Service for calculation | CONTENTANALYZER | RENDITION | RENDITION |
automated Automated calculation | during import with content and content update processes | on (first) request | on (first) request |
manual Manual input | during the import or via the update endpoint for existing objects, or via via the dms.request.objects.upsert.database-before webhook | - | - |
storage Storage location | search index | rendition repository | rendition repository |
availability Availability for DMS object versions | only for the current version | for any (not deleted) version | for any (not deleted) version |
As the text
rendition is used for full-text search, it is stored in the search index. If you want to extend the core system's functionality in terms of supported formats, it is possible to set or update the text rendition via API gateway endpoints. Thus, it is possible to, e.g., it is possible to integrate an OCR implementation to automatically calculate a full-text for binary content files of image file types.
...
The pdf
and slide
renditions are calculated from the binary content file by the rendition service on request. To reduce the workload and processing time for repeated retrieval of the same rendition, a default rendition repository can be configured. It is a separated separate repository to allow for a different storage configuration as it might be required for the binary content files themselves. Whenever a pdf
of or slide
rendition is requested for an object, it is retrieved from the default rendition repository. If available, the stored rendition will be returned. If not available, the requested rendition is generated from the binary content file that is assigned to the object, stored in the default rendition repository and finally returned.
The rendition repository uses the content's digest
as rendition identification to avoid duplicate filing. The digest
is calculated by the CONTENTANALYZER during each content import or update process and referenced in the content stream properties section of the corresponding DMS object. If the same content file is assigned to multiple DMS objects, the digest is the same, and only one rendition for each kind (pdf
or slide
) is stored within a tenant.
...
The following table provides an overview for of various binary content file types and the types of rendition that can be provided () by yuuvis® Momentum.
Binary Content File Typecontent file type | Extension | text rendition | pdf rendition | slide rendition |
---|---|---|---|---|
MS Office Word 97-2016 | doc, docx | |||
MS Office PowerPoint 97-2016 | ppt, pptx | |||
MS Office Excel 97-2016 | xls, xlsx | |||
OpenDocument Text | odt | |||
OpenDocument Presentation | odp | |||
OpenDocument Spreadsheet | ods | |||
Rich Text Format | rtf | - | - | |
Visio Drawing File | vsd, vsdx | - | (limited range of functions) | |
Plain Text | txt | - | - | |
Comma Separated Values | csv | - | - | |
HyperText Markup Language (HTML) | html | - | - | |
XML | xml | - | - | |
JavaScript Object Notation | json | - | - | |
MS Outlook | msg | - | - | |
Encapsulated Portable Document Format | epdf | - | - | |
Encapsulated Portable Document Format | - | |||
Tagged Image File Format | tiff / tif | - | ||
Portable Bitmap Image | pbm | - | - | |
Bitmap Image File | bmp | - | ||
Graphical Interchange Format File | gif | - | ||
JPEG Image Exchangeable image file format (JPEG) | jpg, jng, jpeg | - | (only jpg and jpeg) | |
Portable Network Graphic | png | - | ||
Weppy Image Format (Lossy Compression) | webp | - |
...
The API gateway provides the following endpoints for the handling of renditions. The individual operations are documented in the corresponding object's audit trail.
kind Type of rendition | text | slide | |
---|---|---|---|
retrieval Retrieval for current object version | GET /api/dms/objects/{objectId}/contents/renditions/text | GET /api/dms/objects/{objectId}/contents/renditions/pdf | GET /api/dms/objects/{objectId}/contents/renditions/slide |
retrieval Retrieval for any object version | - | GET /api/dms/objects/{objectId}/versions/{versionNr}/contents/renditions/pdf | GET /api/dms/objects/{objectId}/versions/{versionNr}/contents/renditions/slide |
updateUpdate | POST /api/dms/objects/{objectId}/contents/renditions/text | - | - |
...