• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How do I use Graphics in XML?

 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi, I am new to XML. Please explain how to use Graphics in XML.
Thanks
 
Ranch Hand
Posts: 395
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
If you are refering to Image files, Then you can use HTML's Image tage in XSL file.
Thanks.
------------------
L Goundalkar
lggoundalkar@hotmail.com
Sun Certified Programmer for Java 2 Platform
 
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear L Goundalkar,
Seems interesting. Do you have a small snippet of code you could post?
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you are attempting to transport an image using XML there are a few approaches you can take:
- Base64 encode the image and place it directly in the XML document. This makes for a HUGE XML file, though.
- Use SVG to render your image. SVG is one of those really cool technologies for XML. It is a vector graphics (hence the name 'Scalable Vector Graphics') format that uses XML to describe the image. Apache has a toolkit called Batik for formatting and manipulating images using SVG.


------------------
Jeremy Crosbie
Co-Author of Professional Java XML
 
reply
    Bookmark Topic Watch Topic
  • New Topic