2022.2

Table Of Contents
l
Use a fast network and internet connectionoravoidloadingexternalorinternetresources.
Usingimages,JavaScriptorCSSresourceslocatedonaslownetworkoronaslowinternetcon-
nectionwillobviouslyleadtoalossofspeed.Whilewedoourbestforcaching,adocumentwith
5,000recordswhichqueriesapagethattakes1secondtoreturnadifferentimageeachtimewill,
naturally,slowoutputgenerationdownbyupto83minutes.
l
Makesuretouseoptimized graphic resources.Forinstance,avoidusingimageswithtrans-
parencywherenotransparencyisneeded.
Images
l
Makesuretouseoptimized graphic resources.Forinstance,avoidusingimageswithtrans-
parencywherenotransparencyisneeded.
l
Whenatemplatethatcontainslotsofimagesismergedwithalargerecordset,themanyfile
requestsmayslowdowntheprocessofoutputgeneration.Onesolutionistocombinetheimages
intoasingleimagefile(an'imagesprite')anddisplaythepartthatholdstheimage.Thisreduces
thenumberoffilerequestsandcanimprovetheoutputspeedsignificantly.
Creatingandusingimagesprites
Step 1. Create a file that contains a collection of images.
Staticimagesmaygoinanytypeofimagefile.Storeimagesthatneedbeaddeddynamicallytothetem-
plate,inonePDFfile,oneimageperpage.
ThereareseveraltoolstocombineimagefilesintoasingePDF.ImageMagickisoneofthem.You
couldusetheconvertcommandoftheImageMagicklibrary:
convert C:/myimages/*.jpg C:/myimages/image-collection.pdf
YoucouldalsouseConnect Designeritself:createaprinttemplatewiththesizeofyourimagesand
setthepagemarginsto0.Createascriptthatloopsoveryourimagesandaddsthemtothetextflowof
thetemplate.SubsequentlygeneratePDFoutputandusetheresultingfileasyourcollectionfile.
Step 2. Add the file that contains the collection of images to the template's Resources (see "Adding images" on
page240).
Step 3. Display part of the collection file as an image in the template.
l
Static imagesthatarepartofanimagefilecanbedisplayedviaCascadingStyleSheets(CSS).
Thistechniqueismuchusedinwebdesign.Inthistechnique,thefilethatcontainsacollectionof
imagesiscalledanimage sprite.ThetrickistocreateaBox(orDiv)foreachimageandgive
thatboxanID(see"Boxes"onpage226).ThenusetheIDinastylesheettoselecttheBoxand
Page 884