File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes XML and Related Technologies and the fly likes images Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "images" Watch "images" New topic
Author

images

ramesh kancherla
Ranch Hand

Joined: May 01, 2008
Posts: 120
can we store images in XML?

if yes then how to parse the images
Laxmikant Ruikar
Greenhorn

Joined: Nov 29, 2005
Posts: 23
Have a look on this site http://www.loc.gov/standards/mix/
it might helpful for you..
ramesh kancherla
Ranch Hand

Joined: May 01, 2008
Posts: 120
can you tell how to parse the images stored in XML file
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35438
    
    9
You'd need to encode the image into characters, maybe using something like base64. Then the image becomes regular ASCII that can be stuffed into an XML document. You couldn't do anything else with the image until the encoding has been reversed, though. Before doing this I'd consider at length if there isn't a better way to store the image (maybe as a file, with the file path in the XML).

Have a look on this site http://www.loc.gov/standards/mix/

That looks like it's just about image metadata, not actual image data - am I missing something?


Android appsImageJ pluginsJava web charts
ramesh kancherla
Ranch Hand

Joined: May 01, 2008
Posts: 120
is there any software for converting images into ASCII characters & ASCII characters into image
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35438
    
    9
The Apache Commons Codec library implements base-64 encoding/decoding. That lets you convert between the byte[] of the image and an ASCII representation.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: images
 
Similar Threads
utf8 to unicode..from browser to oracle db
Directory Traversal
Where do you live?
page content type
Graphs in JSF