Search:

Type: Posts; User: Norm

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    6,976

    [SOLVED] Re: Convert JFrame graphics into a jpeg file

    How about this:


    java.io.FileOutputStream fos = new java.io.FileOutputStream(targetPath);

    //Create the pic..
    Image img =...
  2. Replies
    4
    Views
    6,976

    [SOLVED] Re: Convert JFrame graphics into a jpeg file

    Have you looked at the ImageIO class?
    It will write images to files.


    javax.imageio.ImageIO.write((BufferedImage)theImg, "PNG", imgFile);
Results 1 to 2 of 2