Results 1 to 1 of 1
Thread: ImageView , Image problems
- 10-20-2011, 05:47 AM #1
Member
- Join Date
- Oct 2011
- Posts
- 1
- Rep Power
- 0
ImageView , Image problems
I am trying to load my computer folder images into a wall of thumnails. I read from the previous thread from this forum that ImageView "url" instance varable does not support system paths. I tried with the solution there, but it will cause an java.lang.OutOfMemoryError: Java heap space as it keeps reading the file.
another problem is it keeps giving me warning of using package javafx.ext --->SwingUtils.toFXImage method.
I have also tried to input the URL to be as below
url: "file://localhost//Users/user/Pictures/Camera/test/1.JPG"
i tried display 20 times of the image, it only display a randomly 3 or 4 image only when i run my app. THe images will displayed to be empty boxes that create to store them
i check with the error function given from ImageView, it does not indicate any of my images encountered an error.
Is there any other alternatives?
really need help on this. have been trying for days.
Codes
Java FX Code:function load() { println("RUNTIME {Runtime.getRuntime().maxMemory()}"); System.gc(); Runtime.getRuntime().freeMemory(); //MAC Folder PATH var path: String = "/Users/username/Pictures/camera/test/1.JPG";; var file: File = new File(path); //http://download.oracle.com/docs/cd/E17802_01/javafx/javafx/1.3/docs/api/javafx.ext.swing/javafx.ext.swing.SwingUtils.html //public toFXImage(image: java.awt.image.BufferedImage) : Image //Creates a JavaFX Image from a BufferedImage. img = SwingUtils.toFXImage(ImageIO.read(file)); }
Similar Threads
-
JAVA and DPL-problems with sending image to printer
By lipkerson in forum Advanced JavaReplies: 10Last Post: 07-11-2010, 10:08 AM -
Problems drawing a section of an image onto another image.
By Cain in forum Java 2DReplies: 1Last Post: 04-17-2009, 12:44 AM -
Image problems, what's wrong here.
By Bluefox815 in forum Java AppletsReplies: 1Last Post: 03-07-2008, 02:45 AM -
Converting multiple banded image into single banded image... Image enhancement
By archanajathan in forum Advanced JavaReplies: 0Last Post: 01-08-2008, 05:29 PM -
problems when loading an image in servlet
By oregon in forum Java ServletReplies: 1Last Post: 08-05-2007, 06:02 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks