Searched refs:image (Results 426 - 450 of 673) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaImageFactory.java29 import java.awt.image.BufferedImage;
133 final BufferedImage image = new BufferedImage(kAlertIconSize, kAlertIconSize, BufferedImage.TYPE_INT_ARGB);
134 final Graphics g = image.getGraphics();
144 return new IconUIResource(new ImageIcon(image));
229 public InvertableImageIcon(final Image image) { argument
230 super(image);
303 * image that can be streched from its middles.
331 throw new IllegalArgumentException("SlicedImageControl: template image and NineSliceMetrics don't agree on minimum dimensions");
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java56 import java.awt.image.BufferedImage;
57 import java.awt.image.BufferedImageOp;
58 import java.awt.image.ImageObserver;
59 import java.awt.image.RenderedImage;
60 import java.awt.image.renderable.RenderableImage;
555 * ensure that an offscreen image is cleared to a specific color.
923 * Draws as much of the specified image as is currently available.
924 * The image is drawn with its top-left corner at
926 * space. Transparent pixels in the image do not affect whatever
930 * complete image ha
1908 imageUpdate(Image image, int flags, int x, int y, int w, int h) argument
[all...]
H A DProxyGraphics2D.java52 import java.awt.image.BufferedImage;
53 import java.awt.image.BufferedImageOp;
54 import java.awt.image.ImageObserver;
55 import java.awt.image.RenderedImage;
56 import java.awt.image.renderable.RenderContext;
57 import java.awt.image.renderable.RenderableImage;
486 * ensure that an offscreen image is cleared to a specific color.
788 * Draws as much of the specified image as is currently available.
789 * The image is drawn with its top-left corner at
791 * space. Transparent pixels in the image d
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPixelConverter.java26 package sun.awt.image;
27 import java.awt.image.ColorModel;
28 import java.awt.image.DataBuffer;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java49 import java.awt.image.BufferedImage;
50 import java.awt.image.ColorModel;
51 import java.awt.image.DataBuffer;
52 import java.awt.image.IndexColorModel;
53 import java.awt.image.WritableRaster;
54 import java.awt.image.ComponentSampleModel;
55 import java.awt.image.MultiPixelPackedSampleModel;
56 import java.awt.image.SampleModel;
58 import sun.awt.image.ByteComponentRaster;
59 import sun.awt.image
891 drawImageToPlatform(Image image, AffineTransform xform, Color bgcolor, int srcX, int srcY, int srcWidth, int srcHeight, boolean handlingTransparency) argument
[all...]
H A DWPrintDialogPeer.java162 public void updateWindow(java.awt.image.BufferedImage backBuffer) {}
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c43 * - Creates a DIB on to which to blit the image.
292 * and in the code that copies this to the image cache we test for
294 * stated image width for the blitting loops.
303 * than that of the actual image.
324 /* The glyph cache image must be a multiple of 3 bytes wide. */
362 /* Now get the image into a DIB.
405 /* Now copy glyph image into a GlyphInfo structure and return it.
431 glyphInfo->image = (unsigned char*)glyphInfo+sizeof(GlyphInfo);
432 memset(glyphInfo->image, 0, imageSize);
438 * at all. If its not we can reduce the glyph image widt
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c541 all work to getGlyphImage but drop result image.
550 jlong image; local
552 image = Java_sun_font_FreetypeFontScaler_getGlyphImageNative(
554 info = (GlyphInfo*) jlong_to_ptr(image);
574 but drop result image. This is clearly waste of resorces.
581 jlong image = Java_sun_font_FreetypeFontScaler_getGlyphImageNative( local
584 info = (GlyphInfo*) jlong_to_ptr(image);
821 glyphInfo->image = NULL;
823 glyphInfo->image = (unsigned char*) glyphInfo + sizeof(GlyphInfo);
831 (void *) glyphInfo->image,
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DBlit.java31 import java.awt.image.ColorModel;
32 import java.awt.image.Raster;
33 import java.awt.image.WritableRaster;
H A DSurfaceType.java28 import java.awt.image.BufferedImage;
29 import java.awt.image.ColorModel;
30 import sun.awt.image.PixelConverter;
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReader.java30 import java.awt.image.BufferedImage;
31 import java.awt.image.Raster;
32 import java.awt.image.RenderedImage;
113 * attempt to access data associate with an image having a lower
230 * increased as each image (or thumbnail, or image metadata) is
253 * information or partially decoded image data.
328 * increased as each image (or thumbnail, or image metadata) is
428 * Returns the lowest valid index for reading an image, thumbnai
2623 computeRegions(ImageReadParam param, int srcWidth, int srcHeight, BufferedImage image, Rectangle srcRegion, Rectangle destRegion) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DTexturePaintContext.java28 import java.awt.image.BufferedImage;
29 import java.awt.image.Raster;
30 import java.awt.image.WritableRaster;
31 import java.awt.image.ColorModel;
32 import java.awt.image.DirectColorModel;
33 import java.awt.image.IndexColorModel;
37 import sun.awt.image.SunWritableRaster;
38 import sun.awt.image.IntegerInterleavedRaster;
39 import sun.awt.image.ByteInterleavedRaster;
H A DAlphaComposite.java28 import java.awt.image.ColorModel;
213 * Many sources, such as some of the opaque image types listed
233 * An image format that provides at least 8 bits of storage per color
236 * An image format with fewer than 8 bits of storage per component
239 * An image format
274 * For example, consider a discrete integer image with non-premultiplied
324 * match between implementations and image formats. In this
H A DGradientPaint.java31 import java.awt.image.ColorModel;
H A DLinearGradientPaint.java31 import java.awt.image.ColorModel;
93 * This image demonstrates the example code above for each
H A DMultipleGradientPaint.java29 import java.awt.image.ColorModel;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp267 static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
299 static jbyte *findNonWhite(jbyte *image, long sy, long width, long height,
301 static jbyte *findWhite(jbyte *image, long sy, long width, long height,
1483 * image blit up into multiple blit calls. This currently looks as if
1493 jbyte *image = NULL; local
1495 image = (jbyte *)env->GetPrimitiveArrayCritical(imageArray, 0);
1519 image+offset, // points to the DIB
1529 if (image != NULL) {
1530 env->ReleasePrimitiveArrayCritical(imageArray, image, 0);
1535 env->ReleasePrimitiveArrayCritical(imageArray, image,
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDataBufferDouble.java26 package java.awt.image;
36 * if they can maintain control over how the data for an image is
38 * For example, optimizations such as caching an image in video
101 * an associated image in video memory).
124 * an associated image in video memory).
149 * an associated image in video memory).
172 * an associated image in video memory).
191 * an associated image in video memory).
206 * an associated image in video memory).
222 * an associated image i
[all...]
H A DDataBufferFloat.java26 package java.awt.image;
36 * if they can maintain control over how the data for an image is
38 * For example, optimizations such as caching an image in video
102 * an associated image in video memory).
126 * an associated image in video memory).
151 * an associated image in video memory).
174 * an associated image in video memory).
193 * an associated image in video memory).
208 * an associated image in video memory).
224 * an associated image i
[all...]
H A DDataBufferUShort.java36 package java.awt.image;
47 * if they can maintain control over how the data for an image is
49 * For example, optimizations such as caching an image in video
107 * an associated image in video memory).
132 * an associated image in video memory).
161 * an associated image in video memory).
194 * an associated image in video memory).
226 * an associated image in video memory).
241 * an associated image in video memory).
257 * an associated image i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java34 import java.awt.image.BufferedImage;
35 import java.awt.image.ColorModel;
36 import java.awt.image.ComponentColorModel;
37 import java.awt.image.ComponentSampleModel;
38 import java.awt.image.DataBuffer;
39 import java.awt.image.DataBufferByte;
40 import java.awt.image.DataBufferInt;
41 import java.awt.image.DataBufferUShort;
42 import java.awt.image.DirectColorModel;
43 import java.awt.image
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DJpegDataContentHandler.java30 import java.awt.image.BufferedImage;
35 //import com.sun.image.codec.jpeg.*;
60 "image/jpeg",
79 if (df.getMimeType().startsWith("image/jpeg")) {
122 if (!mimeType.equals("image/jpeg"))
143 throw new IOException("Error while loading image");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DParseException.java161 retval += add_escapes(tok.image);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DImageDataContentHandler.java35 import java.awt.image.BufferedImage;
144 throw new IOException("Unable to encode the image to a stream "
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s30 ! mlib_v_ImageCopy_blk - Copy an image into another
39 ! src source image data
40 ! dst destination image data
41 ! size image size in bytes

Completed in 324 milliseconds

<<11121314151617181920>>