Searched defs:image (Results 101 - 125 of 223) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandedSampleModel.java36 package java.awt.image;
39 * This class represents image data which is stored in a band interleaved
43 * implementation for accessing band interleaved image data than is provided
46 * DataBuffer. Accessor methods are provided so that image data can be
57 * and a band of image data. This class supports
77 * image data described.
78 * @param h The height (in pixels) of the region of image
80 * @param numBands The number of bands for the image data.
97 * image data described.
99 * image dat
[all...]
H A DDataBuffer.java36 package java.awt.image;
42 import sun.awt.image.SunWritableRaster;
63 * image classes use TYPE_BYTE, TYPE_USHORT, TYPE_INT, TYPE_SHORT,
64 * TYPE_FLOAT, and TYPE_DOUBLE DataBuffers to store image data.
65 * @see java.awt.image.Raster
66 * @see java.awt.image.SampleModel
H A DImageConsumer.java26 package java.awt.image;
31 * The interface for objects expressing interest in image data through
32 * the ImageProducer interfaces. When a consumer is added to an image
33 * producer, the producer delivers all of the data about the image
42 * The dimensions of the source image are reported using the
44 * @param width the width of the source image
45 * @param height the height of the source image
50 * Sets the extensible list of properties associated with this image.
52 * image
63 * may be seen is a filtered image whe
[all...]
H A DImageFilter.java26 package java.awt.image;
47 * The consumer of the particular image data stream for which this
52 * image data stream.
65 * this class to filter pixels from an image should avoid calling
84 * this class to filter pixels from an image should avoid calling
99 * this class to filter pixels from an image should avoid calling
123 * this class to filter pixels from an image should avoid calling
138 * this class to filter pixels from an image should avoid calling
153 * this class to filter pixels from an image should avoid calling
170 * this class to filter pixels from an image shoul
[all...]
H A DPackedColorModel.java26 package java.awt.image;
64 * A <code>PackedColorModel</code> is typically used with image data
300 * @param w the width (in pixels) of the region of the image data
302 * @param h the height (in pixels) of the region of the image data
362 * an image, extracted from the input <code>WritableRaster</code>.
365 * if present, as the last band of image data. Returns <code>null</code>
369 * @param raster a <code>WritableRaster</code> containing an image
371 * channel of the image contained in <code>raster</code>.
H A DRenderedImage.java36 package java.awt.image;
43 * or can produce image data in the form of Rasters. The image
52 * image data for this RenderedImage. This method returns null if
61 * Gets a property from the property set of this image. The set of
83 * Returns the ColorModel associated with this image. All Rasters
84 * returned from this image will have this as their ColorModel. This
86 * @return the <code>ColorModel</code> of this image.
91 * Returns the SampleModel associated with this image. All Rasters
92 * returned from this image wil
[all...]
H A DRescaleOp.java26 package java.awt.image;
33 import sun.awt.image.ImagingLib;
37 * source image by multiplying the sample values for each pixel by a scale
39 * to the minimum/maximum representable in the destination image.
308 * If the color model in the source image is not the same as that
309 * in the destination image, the pixels will be converted
310 * in the destination. If the destination image is null,
315 * source image has an IndexColorModel.
335 "performed on an indexed image");
584 * Returns the bounding box of the rescaled destination image
[all...]
H A DWritableRaster.java36 package java.awt.image;
81 * @param dataBuffer The DataBuffer that contains the image data.
113 * @param dataBuffer The DataBuffer that contains the image data.
114 * @param aRegion The Rectangle that specifies the image area.
261 * primitive array of type TransferType. For image data supported by
272 * @see java.awt.image.SampleModel#setDataElements(int, int, Object, DataBuffer)
332 * primitive array of type TransferType. For image data supported by
343 * @see java.awt.image.SampleModel#setDataElements(int, int, int, int, Object, DataBuffer)
/openjdk7/jdk/src/share/classes/java/awt/
H A DSplashScreen.java28 import java.awt.image.*;
33 import sun.awt.image.SunWritableRaster;
38 * undecorated window containing an image. You can use GIF, JPEG, or PNG files
39 * for the image. Animation is supported for the GIF format, while transparency
48 * Place the image in the jar archive and specify the path in the option.
61 * implementation allows you to specify the splash screen image location with
72 * whole splash screen image given the limitations of the target platform and
75 * It is implied that the specified image is presented on the screen "as is",
76 * i.e. preserving the exact color values as specified in the image file. Under
77 * certain circumstances, though, the presented image ma
373 private BufferedImage image; // overlay image field in class:SplashScreen
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DExtendedSatelliteComponent.java39 private Image image; field in class:ExtendedSatelliteComponent
71 this.image = null;
92 if (image == null || vw != imageWidth || vh != imageHeight) {
96 image = this.createImage(imageWidth, imageHeight);
97 Graphics2D ig = (Graphics2D) image.getGraphics();
102 gr.drawImage(image, vx, vy, this);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DExtendedSatelliteComponent.java39 private Image image; field in class:ExtendedSatelliteComponent
69 this.image = null;
93 if (image == null || vw != imageWidth || vh != imageHeight) {
97 image = this.createImage(imageWidth, imageHeight);
98 Graphics2D ig = (Graphics2D) image.getGraphics();
105 gr.drawImage(image, vx, vy, this);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMenuItem.java104 * and we want to support the NSMenuItem image apis.
147 private native void nativeSetImage(long modelPtr, long image); argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DImageUtil.java32 import java.awt.image.BufferedImage;
33 import java.awt.image.ColorModel;
34 import java.awt.image.ComponentColorModel;
35 import java.awt.image.ComponentSampleModel;
36 import java.awt.image.DataBuffer;
37 import java.awt.image.DataBufferByte;
38 import java.awt.image.DataBufferInt;
39 import java.awt.image.DataBufferShort;
40 import java.awt.image.DataBufferUShort;
41 import java.awt.image
1127 imageIsContiguous(RenderedImage image) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageWriter.java30 import java.awt.image.ColorModel;
31 import java.awt.image.DataBuffer;
32 import java.awt.image.DataBufferByte;
33 import java.awt.image.IndexColorModel;
34 import java.awt.image.MultiPixelPackedSampleModel;
35 import java.awt.image.Raster;
36 import java.awt.image.RenderedImage;
37 import java.awt.image.SampleModel;
38 import java.awt.image.WritableRaster;
139 IIOImage image,
138 write(IIOMetadata streamMetadata, IIOImage image, ImageWriteParam param) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/opt/
H A DInjector.java74 static Class inject(ClassLoader cl, String className, byte[] image) { argument
77 return injector.inject(className, image);
186 private Class inject(String className, byte[] image) { argument
250 c = (Class) defineClass.invoke(parent, className.replace('/', '.'), image, 0, image.length);
/openjdk7/jdk/src/windows/classes/sun/java2d/opengl/
H A DWGLSurfaceData.java34 import java.awt.image.ColorModel;
89 Image image,
104 image, peer.getColorModel(),
108 image, peer.getColorModel(),
120 Image image, int type)
123 image, cm, type);
182 Image image, ColorModel cm,
185 super(peer, gc, width, height, image, cm, type);
186 flipSurface = WGLSurfaceData.createData(peer, image, FLIP_BACKBUFFER);
209 Image image, ColorMode
88 createData(WComponentPeer peer, Image image, int type) argument
117 createData(WGLGraphicsConfig gc, int width, int height, ColorModel cm, Image image, int type) argument
179 WGLVSyncOffScreenSurfaceData(WComponentPeer peer, WGLGraphicsConfig gc, int width, int height, Image image, ColorModel cm, int type) argument
206 WGLOffScreenSurfaceData(WComponentPeer peer, WGLGraphicsConfig gc, int width, int height, Image image, ColorModel cm, int type) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageCreate.c29 * mlib_ImageCreateStruct - create image data structure
30 * mlib_ImageCreate - create image data structure and allocate
31 * memory for image data
32 * mlib_ImageDelete - delete image
33 * mlib_ImageCreateSubimage - create sub-image
40 * mlib_ImageSetFormat - set image format
76 * img pointer to image data structure
77 * type image data type, one of MLIB_BIT, MLIB_BYTE, MLIB_SHORT,
79 * channels number of image channels
80 * width image widt
126 mlib_ImageSet(mlib_image *image, mlib_type type, mlib_s32 channels, mlib_s32 width, mlib_s32 height, mlib_s32 stride, const void *data) argument
237 mlib_image *image; local
261 mlib_image *image; local
[all...]
/openjdk7/jdk/test/sun/awt/datatransfer/
H A DSuplementaryCharactersTransferTest.java155 protected byte[] imageToPlatformBytes(Image image, long format) argument
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/SourceClippingBlitTest/
H A DSourceClippingBlitTest.java53 import java.awt.image.BufferedImage;
54 import java.awt.image.VolatileImage;
171 public void render(Graphics g, Image image, argument
182 if (image instanceof VolatileImage) {
183 vi = (VolatileImage)image;
192 g.drawImage(image,
248 static void initImage(GraphicsConfiguration gc, Image image) { argument
249 Graphics g = image.getGraphics();
251 int w = image.getWidth(null);
252 int h = image
[all...]
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageFactory.java27 import java.awt.image.BufferedImage;
28 import java.awt.image.ColorConvertOp;
29 import java.awt.image.ColorModel;
30 import java.awt.image.ComponentColorModel;
31 import java.awt.image.DataBuffer;
32 import java.awt.image.DirectColorModel;
33 import java.awt.image.IndexColorModel;
34 import java.awt.image.SampleModel;
35 import java.awt.image.WritableRaster;
87 BufferedImage image
146 fill(BufferedImage image) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXSurfaceData.java34 import java.awt.image.ColorModel;
76 Image image,
83 image, peer.getColorModel(),
87 image, peer.getColorModel(),
99 Image image, int type)
102 image, cm, type);
161 Image image, ColorModel cm,
164 super(peer, gc, width, height, image, cm, type);
165 flipSurface = GLXSurfaceData.createData(peer, image, FLIP_BACKBUFFER);
188 Image image, ColorMode
75 createData(X11ComponentPeer peer, Image image, int type) argument
96 createData(GLXGraphicsConfig gc, int width, int height, ColorModel cm, Image image, int type) argument
158 GLXVSyncOffScreenSurfaceData(X11ComponentPeer peer, GLXGraphicsConfig gc, int width, int height, Image image, ColorModel cm, int type) argument
185 GLXOffScreenSurfaceData(X11ComponentPeer peer, GLXGraphicsConfig gc, int width, int height, Image image, ColorModel cm, int type) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java26 package sun.awt.image;
33 import java.awt.image.BufferedImage;
34 import java.awt.image.ColorModel;
35 import java.awt.image.DirectColorModel;
36 import java.awt.image.IndexColorModel;
37 import java.awt.image.ImageConsumer;
38 import java.awt.image.ImageObserver;
39 import sun.awt.image.ByteComponentRaster;
40 import sun.awt.image.IntegerComponentRaster;
41 import java.awt.image
53 ToolkitImage image; field in class:ImageRepresentation
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DImageIcon.java28 import java.awt.image.*;
49 * of the image.
52 * For further information and examples of using image icons, see
72 * images symbolically rather than including the image data
78 transient Image image; field in class:ImageIcon
139 * Creates an ImageIcon from the specified file. The image will
141 * of the image.
142 * @param filename the name of the file containing the image
143 * @param description a brief textual description of the image
147 image
213 ImageIcon(Image image, String description) argument
226 ImageIcon(Image image) argument
295 loadImage(Image image) argument
367 setImage(Image image) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalUtils.java31 import java.awt.image.*;
274 protected void paintToImage(Component c, Image image, Graphics g, argument
300 Image image, Object[] args) {
307 g.drawImage(image, counter, 0, counter + tileSize, h,
314 g.drawImage(image, 0, counter, w, counter + tileSize,
394 static Icon getOceanDisabledButtonIcon(Image image) { argument
402 ImageProducer prod = new FilteredImageSource(image.getSource(),
298 paintImage(Component c, Graphics g, int x, int y, int imageW, int imageH, Image image, Object[] args) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageScalingHelper.java41 * Painting type indicating the image should be centered in the space provided. When used the <code>mask</code>
47 * Painting type indicating the image should be tiled across the specified width and height. When used the
53 * Painting type indicating the image should be split into nine regions with the top, left, bottom and right
59 * Painting type indicating the image should be split into nine regions with the top, left, bottom and right
92 * @param image Image to render from, if <code>null</code> this method will do nothing
93 * @param sInsets Insets specifying the portion of the image that will be stretched or tiled, if <code>null</code>
95 * @param dInsets Destination insets specifying the portion of the image will be stretched or tiled, if
98 * @param mask Specifies portion of image to render, if <code>PAINT_ALL</code> is specified, any other regions
103 Image image, Insets sInsets,
105 if (image
102 paint(Graphics g, int x, int y, int w, int h, Image image, Insets sInsets, Insets dInsets, PaintType paintType, int mask) argument
228 drawChunk(Image image, Graphics g, boolean stretch, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, boolean xDirection) argument
267 drawImage(Image image, Graphics g, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2) argument
[all...]

Completed in 2336 milliseconds

123456789