Searched refs:image (Results 276 - 300 of 673) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageReader.java29 import java.awt.image.BufferedImage;
30 import java.awt.image.DataBufferByte;
31 import java.awt.image.MultiPixelPackedSampleModel;
32 import java.awt.image.Raster;
33 import java.awt.image.WritableRaster;
51 * It may subsample the image, clip the image,
52 * and shift the decoded image origin if the proper decoding parameter
62 /** The original image width. */
65 /** The original image heigh
[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/share/classes/sun/swing/
H A DWindowsPlacesBar.java107 Image image = sf.getIcon(true);
109 if (image == null) {
110 // Get default image
111 image = (Image) ShellFolder.get("shell32LargeIcon 1");
114 icon = image == null ? null : new ImageIcon(image, sf.getFolderType());
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DAlphaPaintPipe.java33 import java.awt.image.ColorModel;
34 import java.awt.image.Raster;
35 import java.awt.image.WritableRaster;
36 import java.awt.image.BufferedImage;
37 import sun.awt.image.BufImgSurfaceData;
H A DGeneralCompositePipe.java34 import java.awt.image.ColorModel;
35 import java.awt.image.BufferedImage;
36 import java.awt.image.Raster;
37 import java.awt.image.WritableRaster;
38 import sun.awt.image.BufImgSurfaceData;
H A DNullPipe.java32 import java.awt.image.BufferedImage;
33 import java.awt.image.BufferedImageOp;
34 import java.awt.image.ImageObserver;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DApplicationDelegate.m458 + (void)_setDockIconImage:(NSImage *)image {
462 if (image == nil) {
467 // setup an image view for the dock tile
471 [dockImageView setImage:image];
480 // Obtains the image of the Dock icon, either manually set, a drawn copy, or the default NSApplicationIcon
488 NSImage *img = [((NSImageView *)view) image];
497 NSImage *image = [[NSImage alloc] initWithSize:frame.size];
498 [image lockFocus];
500 [image unlockFocus];
501 [image autoreleas
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java30 import java.awt.image.ColorModel;
31 import java.awt.image.ComponentSampleModel;
32 import java.awt.image.DataBuffer;
33 import java.awt.image.DataBufferByte;
34 import java.awt.image.DataBufferInt;
35 import java.awt.image.DataBufferShort;
36 import java.awt.image.DataBufferUShort;
37 import java.awt.image.DirectColorModel;
38 import java.awt.image.IndexColorModel;
39 import java.awt.image
153 write(IIOMetadata streamMetadata, IIOImage image, ImageWriteParam param) argument
1339 writeEmbedded(IIOImage image, ImageWriteParam bmpParam) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DInnerShadowEffect.java27 import java.awt.image.BufferedImage;
28 import java.awt.image.Raster;
29 import java.awt.image.WritableRaster;
45 * under the src image. BLENDED means the result of apply sffect contains a modified src image so just it should be
46 * painted. OVER means the result of apply effect should be painted over the src image.
55 * Apply the effect to the src image generating the result . The result image may or may not contain the source
56 * image depending on what the effect type is.
58 * @param src The source image fo
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRGBImageFilter.java26 package java.awt.image;
28 import java.awt.image.ImageConsumer;
29 import java.awt.image.ColorModel;
33 * the pixels of an image in the default RGB ColorModel. It is meant to
39 * The only method which needs to be defined to create a useable image
41 * of a filter which swaps the red and blue components of an image:
108 * this class to filter pixels from an image should avoid calling
218 * this class to filter pixels from an image should avoid calling
255 * this class to filter pixels from an image should avoid calling
H A DReplicateScaleFilter.java26 package java.awt.image;
28 import java.awt.image.ImageConsumer;
29 import java.awt.image.ColorModel;
36 * image and provide a source for a new image containing the resampled
37 * image. The pixels in the source image are sampled to produce pixels
38 * for an image of the specified size by replicating rows and columns of
44 * of an image filtered on different platforms.
54 * The width of the source image
[all...]
H A DLookupOp.java27 package java.awt.image;
34 import sun.awt.image.ImagingLib;
107 * If the color model in the source image is not the same as that
108 * in the destination image, the pixels will be converted
109 * in the destination. If the destination image is <code>null</code>,
114 * stated in the class comment above, or if the source image
122 * described in the class comments, or if the source image
132 "performed on an indexed image");
143 " src image: "+src);
329 * Returns the bounding box of the filtered destination image
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DRenderableImageOp.java36 package java.awt.image.renderable;
39 import java.awt.image.RenderedImage;
80 * image data for this RenderableImage. Note that this method may
81 * return an empty vector, to indicate that the image has no sources,
110 * Gets a property from the property set of this image.
146 * usual width of a RenderableImage is equal to the image's aspect
149 * @return the width of the image in user coordinates.
162 * @return the height of the image in user coordinates.
172 * Gets the minimum X coordinate of the rendering-independent image data.
182 * Gets the minimum Y coordinate of the rendering-independent image dat
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DEncoded.java193 byte[] image = UTF8XmlOutput.toBytes(s);
194 attributeEntities[c] = image;
196 entities[c] = image;
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DGrayPngTest.java27 * @summary Test verifies that PNG image writer correctly handles indexed images with
30 * Test for 4bpp OPAQUE image
33 * Test for 4bpp BITMASK image with transparent pixel 3
36 * Test for 4bpp TRANSLUCENT image
39 * Test for 8bpp OPAQUE image
42 * Test for 8bpp BITMASK image with transparent pixel 127
45 * Test for 8bpp TRANSLUCENT image
52 import java.awt.image.BufferedImage;
53 import java.awt.image.IndexColorModel;
54 import java.awt.image
[all...]
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/
H A DDrawImageBilinear.java46 import java.awt.image.BufferedImage;
47 import java.awt.image.IndexColorModel;
48 import java.awt.image.VolatileImage;
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DColConvCCMTest.java32 import java.awt.image.BufferedImage;
33 import java.awt.image.ColorConvertOp;
34 import java.awt.image.DataBuffer;
123 "image: " + gldImgNames[i]);
144 getDTName(dataTypes[j]) + ". Golden image:" +
155 getDTName(dataTypes[j]) + ". Golden image:" +
/openjdk7/jdk/src/share/classes/sun/java2d/cmm/
H A DCMSManager.java31 import java.awt.image.BufferedImage;
32 import java.awt.image.Raster;
33 import java.awt.image.WritableRaster;
46 // java.awt.image.ColorModel.
/openjdk7/jdk/make/sun/awt/
H A Dmawt.gmk90 vpath %.c $(SHARE_SRC)/native/$(PKGDIR)/image
91 vpath %.c $(SHARE_SRC)/native/$(PKGDIR)/image/gif
92 vpath %.c $(SHARE_SRC)/native/$(PKGDIR)/image/cvutils
103 vpath %.cpp $(SHARE_SRC)/native/$(PKGDIR)/image
207 -I$(SHARE_SRC)/native/$(PKGDIR)/image \
208 -I$(SHARE_SRC)/native/$(PKGDIR)/image/cvutils \
/openjdk7/jdk/src/windows/classes/sun/java2d/opengl/
H A DWGLGraphicsConfig.java38 import java.awt.image.ColorModel;
39 import java.awt.image.DataBuffer;
40 import java.awt.image.DirectColorModel;
41 import java.awt.image.VolatileImage;
44 import sun.awt.image.SunVolatileImage;
45 import sun.awt.image.SurfaceManager;
321 * image wrapper.
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DByteBandedRaster.java26 package sun.awt.image;
27 import java.awt.image.Raster;
28 import java.awt.image.WritableRaster;
29 import java.awt.image.RasterFormatException;
30 import java.awt.image.SampleModel;
31 import java.awt.image.BandedSampleModel;
32 import java.awt.image.DataBuffer;
33 import java.awt.image.DataBufferByte;
53 /** Data offsets for each band of image data. */
56 /** Scanline stride of the image dat
[all...]
H A DImageWatched.java26 package sun.awt.image;
30 import java.awt.image.ImageObserver;
73 * Deliver the indicated image update information
H A DIntegerComponentRaster.java26 package sun.awt.image;
27 import java.awt.image.Raster;
28 import java.awt.image.WritableRaster;
29 import java.awt.image.RasterFormatException;
30 import java.awt.image.SampleModel;
31 import java.awt.image.SinglePixelPackedSampleModel;
32 import java.awt.image.DataBuffer;
33 import java.awt.image.DataBufferInt;
71 /** Data offsets for each band of image data. */
74 /** Scanline stride of the image dat
[all...]
H A DShortBandedRaster.java26 package sun.awt.image;
27 import java.awt.image.Raster;
28 import java.awt.image.WritableRaster;
29 import java.awt.image.RasterFormatException;
30 import java.awt.image.SampleModel;
31 import java.awt.image.BandedSampleModel;
32 import java.awt.image.DataBuffer;
33 import java.awt.image.DataBufferUShort;
51 /** Data offsets for each band of image data. */
54 /** Scanline stride of the image dat
[all...]
H A DXbmImageDecoder.java29 package sun.awt.image;
32 import java.awt.image.*;
58 // we take forever to decode the image...
72 * produce an image from the stream.

Completed in 69 milliseconds

<<11121314151617181920>>