> The main problem is about how the optimisation should be? Reduce file > sizes or rendering time? I might consider rendering time which in > return will increase file sizes! All of the above I have to consider > but of course I need to know how SVG is rendered! Is there anybody who > can tell me where I can find such information please!
There are at least two other primary optimization concerns: memory optimization processing optimization Your examples (size and rendering) map onto these categories well but you should be aware that memory and processing are the driving underlying factors. It is best to think about cell phones as a platform-- there is limited memory and limited processing power. Both of these translate to cost-- either in bandwidth or in heat/battery. Sometimes in both. SVG allows for various forms of quality degradation to accomplish both. Another important issue is re-rendering (or animation). Somethings which save initial speed (e.g. <use>) end up costing a lot more in the long run. All the best, Jeff Rafter ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

