CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: leon945

Search: Search took 0.02 seconds.

  1. Replies
    9
    Views
    11,832

    Re: Loading images fast to JLabel icon

    This proved to be the best solution!
    Thanks ! :)
  2. Replies
    9
    Views
    11,832

    Re: Loading images fast to JLabel icon

    my application adds the images to a JPanel with GridLayout, so, when there are many images, the time it takes for all pictures to be loaded is very long.

    I was watching Windows' behaviour when...
  3. Replies
    9
    Views
    11,832

    Re: Loading images fast to JLabel icon

    I havent tried other formats..

    The first time the user adds images i create the thumbnails, which takes even longer, but once they are created my application only loads the thumbnails, which is...
  4. Replies
    9
    Views
    11,832

    Re: Loading images fast to JLabel icon

    Hi,

    I already reduce image size, I save a thumbnail in jpeg format that is on average about 3kb.
    I tried higher compression but time is not reduced.. so i guess, there really isn't much to be...
  5. Replies
    9
    Views
    11,832

    Re: Loading images fast to JLabel icon

    Ok, I ran a profile on my application and discovered that 90% of the loading time comes from
    javax.imageio.ImageIO.read

    Am i stuck with this, or is there a faster way to read images?
    Is this a...
  6. Replies
    9
    Views
    11,832

    Loading images fast to JLabel icon

    Hello,

    In my code, im loading a bunch of images to create a sort of gallery,

    I want to know if there is a faster way to load images than what i have done here.. it seems really slow and...
  7. Re: Convert String representation of HEX to HEX value

    Yes that's it! Thank you very much
  8. Re: dynamically load .jar file in a java application

    Hi,

    I did a quick search on google and found this link about dynamically loading classes.. i hope it helps some:
    http://tutorials.jenkov.com/java-reflection/dynamic-class-loading-reloading.html
  9. [RESOLVED] Convert String representation of HEX to HEX value

    Hi,

    I've been looking all over, but i cant seem to find an answer to this..
    If i have this code for example:

    String myHex = "0x1E";


    Is it possible to convert that string to the actual HEX...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured