aspose file tools
The moose likes Beginning Java and the fly likes how to open an image by giving path? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "how to open an image by giving path?" Watch "how to open an image by giving path?" New topic
Author

how to open an image by giving path?

praveen livingstone
Greenhorn

Joined: Apr 13, 2008
Posts: 7
I wrote a program where I get the pixel data from a gif image. for loading the image and getting an image object, i used this statement.

URL url = new URL("http://www.wizard.ca/pics/all_roads_desktop_800x600.gif");
Image m_image= Toolkit.getDefaultToolkit().getImage(url);

Is there any other way by which i can create an image object just by giving general path like "d:\pictures\all_roads_desktop_800x600.gif" instead of an url?
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35232
    
    7
The usual way to opening image files is the javax.imageio.ImageIO.read method, which returns a BufferedImage object.


Android appsImageJ pluginsJava web charts
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: how to open an image by giving path?
 
Similar Threads
width and height using image object
request.getHeader() return value ?
request.getHeader()
Getting absolute path of image file
Sending image from servlet using standard java io