You can include full size images for dynamic widgets in a PDF by creating a custom booklet template and adding some javascript to the "standard.html" page layout - this can be achieved by following these steps:
- Create a custom Booklet Topics Template (if you aren't already using one). Check which Topics template you are using on the "Templates" page in the Booklet Profile Editor and then in Options\Custom Templates create a new Topics template based on it;
- When the template editor opens, switch to the Page Types page and open the "standard.html" page for edit;
- Add the script below just before the closing </body> tag;
- In the Booklet Profile Editor, on the Templates page, choose your custom template.
JavaScript
<script language="javascript"> var imgs = document.getElementsByTagName("img"); var i = 0; for (i = 0; i < imgs.length; i++) { var regex = new RegExp("_thumb\.", "gi"); imgs[i].src = imgs[i].src.replace(regex, "."); } </script>
0 Comments