Searched refs:image (Results 101 - 125 of 673) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/java2d/GdiRendering/
H A DInsetClipping.java40 * background color, then set the clip, then draw the image; if we detect
41 * the image color at pixel (0, 0) then we did not clip correctly and the
47 import java.awt.image.*;
51 BufferedImage image; field in class:InsetClipping
59 image = new BufferedImage( 300, 300,BufferedImage.TYPE_INT_RGB);
60 Graphics g2 = image.createGraphics();
74 g.drawImage(image, 0, 0, null);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekMetrics.java37 import java.awt.image.RenderedImage;
38 import java.awt.image.renderable.RenderableImage;
132 * in image.
134 public void drawImage(Graphics2D g, Image image) { argument
140 * in image.
142 public void drawImage(Graphics2D g, RenderedImage image) { argument
148 * in image.
150 public void drawImage(Graphics2D g, RenderableImage image) { argument
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DRenderableImageProducer.java36 package java.awt.image.renderable;
38 import java.awt.image.ColorModel;
39 import java.awt.image.DataBuffer;
40 import java.awt.image.DirectColorModel;
41 import java.awt.image.ImageConsumer;
42 import java.awt.image.ImageProducer;
43 import java.awt.image.Raster;
44 import java.awt.image.RenderedImage;
45 import java.awt.image.SampleModel;
55 * implements an asynchronous production that produces the image i
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFramePeer.java31 import java.awt.image.ImageObserver;
33 import java.awt.image.Raster;
34 import java.awt.image.DataBuffer;
35 import java.awt.image.DataBufferInt;
36 import java.awt.image.BufferedImage;
38 import java.awt.image.ColorModel;
40 import sun.awt.image.ImageRepresentation;
41 import sun.awt.image.IntegerComponentRaster;
42 import sun.awt.image.ToolkitImage;
H A DWCustomCursor.java30 import java.awt.image.*;
31 import sun.awt.image.ImageRepresentation;
32 import sun.awt.image.IntegerComponentRaster;
33 import sun.awt.image.ToolkitImage;
36 * A class to encapsulate a custom image-based cursor.
/openjdk7/jdk/test/java/awt/image/ConvolveOp/
H A DOpCompatibleImageTest.java36 import java.awt.image.BufferedImage;
37 import java.awt.image.BufferedImageOp;
38 import java.awt.image.ColorModel;
39 import java.awt.image.ConvolveOp;
40 import java.awt.image.ImagingOpException;
41 import java.awt.image.Kernel;
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java30 import java.awt.image.ImageObserver;
40 * method for each image to be tracked. In addition, each image can
49 * Tracking an animated image
51 * due to the multi-part nature of animated image
54 * <code>MediaTracker</code> treats an animated image
59 * that the image is completely loaded.
60 * If no <code>ImageObserver</code>s are observing the image
62 * the image might flush itself
110 * // First wait for the background image t
210 addImage(Image image, int id) argument
224 addImage(Image image, int id, int w, int h) argument
721 removeImage(Image image) argument
752 removeImage(Image image, int id) argument
784 removeImage(Image image, int id, int width, int height) argument
882 Image image; field in class:ImageMediaEntry
[all...]
H A DTrayIcon.java41 * <code>TrayIcon</code> can have a tooltip (text), an image, a popup
88 private Image image; field in class:TrayIcon
150 * Creates a <code>TrayIcon</code> with the specified image.
152 * @param image the <code>Image</code> to be used
153 * @throws IllegalArgumentException if <code>image</code> is
167 public TrayIcon(Image image) { argument
169 if (image == null) {
172 setImage(image);
176 * Creates a <code>TrayIcon</code> with the specified image and
179 * @param image th
196 TrayIcon(Image image, String tooltip) argument
226 TrayIcon(Image image, String tooltip, PopupMenu popup) argument
253 setImage(Image image) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DDiagramComponent.java34 import java.awt.image.BufferedImage;
48 private BufferedImage image; field in class:DiagramComponent
63 boolean update = (this.image == null)
64 || (this.width != this.image.getWidth())
65 || (this.height != this.image.getHeight());
71 this.image = new BufferedImage(this.width, this.height, BufferedImage.TYPE_INT_RGB);
94 this.image.setRGB(0, 0, this.width, this.height, this.array, 0, this.width);
95 g.drawImage(this.image, this.insets.left, this.insets.top, this.width, this.height, this);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DDataBufferNative.java27 package sun.awt.image;
29 import java.awt.image.DataBuffer;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageWriter.java30 import java.awt.image.ColorModel;
31 import java.awt.image.ComponentSampleModel;
32 import java.awt.image.DataBufferByte;
33 import java.awt.image.IndexColorModel;
34 import java.awt.image.Raster;
35 import java.awt.image.RenderedImage;
36 import java.awt.image.SampleModel;
37 import java.awt.image.WritableRaster;
58 import sun.awt.image.ByteComponentRaster;
93 * The index of the image bein
514 writeToSequence(IIOImage image, ImageWriteParam param) argument
540 needToCreateIndex(RenderedImage image) argument
739 writeImage(RenderedImage image, GIFWritableImageMetadata imageMetadata, ImageWriteParam param, byte[] globalColorTable, Rectangle sourceBounds, Dimension destSize) argument
817 writeRows(RenderedImage image, LZWCompressor compressor, int sx, int sdx, int sy, int sdy, int sw, int dy, int ddy, int dw, int dh, int numRowsWritten, int progressReportRowPeriod) argument
873 writeRasterData(RenderedImage image, Rectangle sourceBounds, Dimension destSize, ImageWriteParam param, boolean interlaceFlag) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DImageCache.java34 * Cache is used to cache an image based on a set of arguments.
92 * Sets the cached image for the specified constraints.
95 int w, int h, Object[] args, Image image) {
97 entry.setImage(image);
109 private Image image; field in class:ImageCache.Entry
118 public void setImage(Image image) { argument
119 this.image = image;
123 return image;
129 ", image
94 setImage(Object key, GraphicsConfiguration config, int w, int h, Object[] args, Image image) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/content/image/
H A Dgif.java26 package sun.net.www.content.image;
31 import sun.awt.image.*;
H A Djpeg.java26 package sun.net.www.content.image;
31 import sun.awt.image.*;
H A Dpng.java26 package sun.net.www.content.image;
33 import sun.awt.image.*;
H A Dx_xbitmap.java26 package sun.net.www.content.image;
29 import sun.awt.image.*;
H A Dx_xpixmap.java26 package sun.net.www.content.image;
29 import sun.awt.image.*;
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletImageRef.java30 import sun.awt.image.URLImageSource;
48 * Reconsitute the image. Only called when the ref has been flushed.
/openjdk7/jdk/src/share/classes/sun/awt/
H A DCustomCursor.java29 import java.awt.image.*;
32 * A class to encapsulate a custom image-based cursor.
38 protected Image image; field in class:CustomCursor
43 image = cursor;
46 // Make sure image is fully loaded.
58 // check absence of the image of cursor
59 // If the image is invalid, the cursor will be hidden (made completely
61 // but we need to set the hotspot inside the image here.
66 // Scale image to nearest supported size.
81 /* Extract ARGB array from image
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageOp.java26 package java.awt.image;
67 * If the destination image is null,
72 * and/or destination image is incompatible with the types of images $
81 * image is not compatible with the types of images allowed by the class
87 * Returns the bounding box of the filtered destination image.
89 * image is incompatible with the types of images allowed
95 * image's bounding box.
100 * Creates a zeroed destination image with the correct size and number of
103 * image is incompatible with the types of images allowed
110 * @return The zeroed destination image
[all...]
H A DRasterOp.java26 package java.awt.image;
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java30 import java.awt.image.ImageProducer;
31 import java.awt.image.ImageObserver;
32 import java.awt.image.ColorModel;
33 import java.awt.image.VolatileImage;
367 * Creates an image using the specified image producer.
369 * @param producer the image producer from which the image pixels will be
372 * @return the created image
379 * Creates an empty image wit
[all...]
/openjdk7/jdk/src/share/classes/java/awt/color/
H A DICC_ProfileGray.java38 import java.awt.image.LookupTable;
/openjdk7/jdk/test/java/awt/Component/PrintAllXcheckJNI/
H A DPrintAllXcheckJNI.java33 import java.awt.image.BufferedImage;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageCreate.h34 mlib_image* mlib_ImageSet(mlib_image *image,

Completed in 46 milliseconds

1234567891011>>