Lines Matching defs:image

40 import java.awt.image.BufferStrategy;
41 import java.awt.image.ImageObserver;
42 import java.awt.image.ImageProducer;
43 import java.awt.image.ColorModel;
44 import java.awt.image.VolatileImage;
82 import sun.awt.image.VSyncedBSManager;
324 * @see java.awt.image.BufferStrategy
602 new GetPropertyAction("awt.image.incrementaldraw"));
606 new GetPropertyAction("awt.image.redrawrate"));
1536 * Returns true if this component is painted to an offscreen image
1965 * @see java.awt.image.ColorModel
3078 * Sets the cursor image to the specified cursor. This cursor
3079 * image is displayed when the <code>contains</code> method for
3457 * Repaints the component when the image has changed.
3460 * image which had been previously requested using an asynchronous
3467 * incrementally draws an image on the component as more of the bits
3468 * of the image are available.
3470 * If the system property <code>awt.image.incrementaldraw</code>
3471 * is missing or has the value <code>true</code>, the image is
3473 * then the image is not drawn until it has been completely loaded.
3476 * system property <code>awt.image.redrawrate</code> is interpreted
3485 * @param img the image being observed
3492 * image is completely loaded; <code>true</code> otherwise.
3494 * @see java.awt.image.ImageObserver
3495 * @see Graphics#drawImage(Image, int, int, Color, java.awt.image.ImageObserver)
3496 * @see Graphics#drawImage(Image, int, int, java.awt.image.ImageObserver)
3497 * @see Graphics#drawImage(Image, int, int, int, int, Color, java.awt.image.ImageObserver)
3498 * @see Graphics#drawImage(Image, int, int, int, int, java.awt.image.ImageObserver)
3499 * @see java.awt.image.ImageObserver#imageUpdate(java.awt.Image, int, int, int, int, int)
3522 * Creates an image from the specified image producer.
3523 * @param producer the image producer
3524 * @return the image produced
3536 * Creates an off-screen drawable image
3540 * @return an off-screen drawable image, which can be used for double
3560 * Creates a volatile off-screen drawable image
3564 * @return an off-screen drawable image, which can be used for double
3569 * @see java.awt.image.VolatileImage
3588 * Creates a volatile off-screen drawable image, with the given capabilities.
3589 * The contents of this image may be lost at any time due
3590 * to operating system issues, so the image must be managed
3594 * @param caps the image capabilities
3595 * @exception AWTException if an image with the specified capabilities cannot
3599 * @see java.awt.image.VolatileImage
3609 * Prepares an image for rendering on this component. The image
3611 * appropriate screen representation of the image is generated.
3612 * @param image the <code>Image</code> for which to
3615 * to be notified as the image is being prepared
3616 * @return <code>true</code> if the image has already been fully
3620 public boolean prepareImage(Image image, ImageObserver observer) {
3621 return prepareImage(image, -1, -1, observer);
3625 * Prepares an image for rendering on this component at the
3628 * The image data is downloaded asynchronously in another thread,
3629 * and an appropriately scaled screen representation of the image is
3631 * @param image the instance of <code>Image</code>
3636 * to be notified as the image is being prepared
3637 * @return <code>true</code> if the image has already been fully
3639 * @see java.awt.image.ImageObserver
3642 public boolean prepareImage(Image image, int width, int height,
3647 ? parent.prepareImage(image, width, height, observer)
3648 : getToolkit().prepareImage(image, width, height, observer);
3651 ? peer.prepareImage(image, width, height, observer)
3652 : getToolkit().prepareImage(image, width, height, observer);
3658 * of the specified image.
3660 * This method does not cause the image to begin loading. An
3662 * to force the loading of an image.
3666 * @param image the <code>Image</code> object whose status
3669 * object to be notified as the image is being prepared
3672 * information about the image is currently available
3673 * @see #prepareImage(Image, int, int, java.awt.image.ImageObserver)
3674 * @see Toolkit#checkImage(Image, int, int, java.awt.image.ImageObserver)
3675 * @see java.awt.image.ImageObserver
3678 public int checkImage(Image image, ImageObserver observer) {
3679 return checkImage(image, -1, -1, observer);
3684 * of the specified image.
3686 * This method does not cause the image to begin loading. An
3688 * to force the loading of an image.
3698 * @param image the <code>Image</code> object whose status
3705 * to be notified as the image is being prepared
3708 * information about the image is currently available
3709 * @see #prepareImage(Image, int, int, java.awt.image.ImageObserver)
3710 * @see Toolkit#checkImage(Image, int, int, java.awt.image.ImageObserver)
3711 * @see java.awt.image.ImageObserver
3714 public int checkImage(Image image, int width, int height,
3719 ? parent.checkImage(image, width, height, observer)
3720 : getToolkit().checkImage(image, width, height, observer);
3723 ? peer.checkImage(image, width, height, observer)
3724 : getToolkit().checkImage(image, width, height, observer);
3892 * @see java.awt.image.BufferStrategy
3910 * The drawing buffer as a volatile image
4035 * @return direct access to the back buffer, as an image.
4294 // be > 0 so that creating the image won't fail.
4340 * @return direct access to the back buffer, as an image.
4384 // First image copy is in terms of Frame's coordinates, need
4531 * @see java.awt.image.BufferStrategy
4573 * @see java.awt.image.BufferStrategy