Hi, I have the following use case.
I have 10 base SVGDocument(s) that are made essentially of a background <image/> and several placeholders for text and other elements. All the base documents have the same width, height and viewPort but with different backgrounds and elements. At any time the application needs to generate png images from any base document but with custom text. All generated image have the same width, height and resolution. Currently, when the application needs to generate a custom image from a base document, it clones it, update the placholders with the actual data and transcode the new document. What is the best strategy in term of performance and thread safety? 1- Using the same transcoder for all the images? 2- Using a single transcoder for all the images generated from a same base document (that is 10 different transcoders)? 3- Using a new transcoder each time I need a new custom image because of potential thread safety issues? 4- Any other solution... Thanks __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
