Java JComponent to Image setImage(Image im, Component c)

Here you can find the source of setImage(Image im, Component c)

Description

Ensures that Images is completely loaded

License

Open Source License

Declaration


public static boolean setImage(Image im, Component c) 

Method Source Code

//package com.java2s;
/**/* w w  w . j  a  va2s . c om*/
 * MegaMek - Copyright (C) 2000-2002 Ben Mazur (bmazur@sev.org)
 * 
 *  This program is free software; you can redistribute it and/or modify it 
 *  under the terms of the GNU General Public License as published by the Free 
 *  Software Foundation; either version 2 of the License, or (at your option) 
 *  any later version.
 * 
 *  This program is distributed in the hope that it will be useful, but 
 *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
 *  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
 *  for more details.
 */

import java.awt.*;

public class Main {
    /**
     * Ensures that Images is completely loaded
     */

    public static boolean setImage(Image im, Component c) {
        boolean b = true;
        MediaTracker mt = new MediaTracker(c);
        mt.addImage(im, 0);
        try {
            mt.waitForID(0);
        } catch (InterruptedException e) {
            System.out.println("Error while image loading."); //$NON-NLS-1$
            b = false;
        }
        if (mt.isErrorID(0)) {
            System.out.println("Could Not load Image."); //$NON-NLS-1$
            b = false;
        }

        return b;
    }
}

Related

  1. doScreenshotToFile(final Component container, final Path filePath, final String imageType)
  2. ensureImageLoaded(Component owner, Image image)
  3. findConnectedComponents(int[][] image)
  4. generateImageFileFromComponent(Component component, String filename, String Type)
  5. setCustomCursor(Component component, Image cursorImg, String name)
  6. tileImage(Image img, Component comp, Graphics g, int x, int y, int width, int height)