aspose file tools
The moose likes Swing / AWT / SWT and the fly likes Drawing of a Scaled Image Fails to show unless stepping through in the debugger Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Drawing of a Scaled Image Fails to show unless stepping through in the debugger" Watch "Drawing of a Scaled Image Fails to show unless stepping through in the debugger" New topic
Author

Drawing of a Scaled Image Fails to show unless stepping through in the debugger

Tim Alvord
Greenhorn

Joined: Jan 24, 2013
Posts: 22
Hi,
I am trying to scale an image I have previously loaded from a file. All drawing of the image works fine until I make a scaled copy of it and try and display it. Then it only will display if I am stepping through the debugger. Do I need to wait somehow until the scaled image is completed before displaying?

Tony Docherty
Bartender

Joined: Aug 07, 2007
Posts: 1151
    
    3

The API docs for getScaledInstance say:
"Creates a scaled version of this image. A new Image object is returned which will render the image at the specified width and height by default. The new Image object may be loaded asynchronously even if the original source image has already been loaded completely."
So yes you may have to wait. Alternatively you can draw a scaled version of the image on the fly using one of the Graphics classes drawImage(...) methods, I've no idea how efficient it is though.
Tim Alvord
Greenhorn

Joined: Jan 24, 2013
Posts: 22
Tony,
Thanks. I ended up using: drawImage(Img, x, y, width, height, this )
Tony Docherty
Bartender

Joined: Aug 07, 2007
Posts: 1151
    
    3

You're Welcome
 
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: Drawing of a Scaled Image Fails to show unless stepping through in the debugger
 
Similar Threads
Image painted partialy
Is this really multi-threaded?
WebSphere IDE Tool - Debugging
getInsets() and Frames
Menu Clears Out Graphics