Searched refs:imageIndex (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOWriteWarningListener.java55 * @param imageIndex the index, starting with 0, of the image
60 int imageIndex,
59 warningOccurred(ImageWriter source, int imageIndex, String warning) argument
H A DIIOWriteProgressListener.java48 * @param imageIndex the index of the image being written within
51 void imageStarted(ImageWriter source, int imageIndex); argument
100 * @param imageIndex the index of the image being written within its
105 int imageIndex, int thumbnailIndex);
104 thumbnailStarted(ImageWriter source, int imageIndex, int thumbnailIndex) argument
H A DIIOReadProgressListener.java81 * @param imageIndex the index of the image being read within its
84 void imageStarted(ImageReader source, int imageIndex); argument
131 * @param imageIndex the index of the image being read within its
136 int imageIndex, int thumbnailIndex);
135 thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/wbmp/
H A DWBMPImageReader.java99 public int getWidth(int imageIndex) throws IOException { argument
100 checkIndex(imageIndex);
105 public int getHeight(int imageIndex) throws IOException { argument
106 checkIndex(imageIndex);
111 public boolean isRandomAccessEasy(int imageIndex) throws IOException { argument
112 checkIndex(imageIndex);
116 private void checkIndex(int imageIndex) { argument
117 if (imageIndex != 0) {
155 public Iterator getImageTypes(int imageIndex) argument
157 checkIndex(imageIndex);
171 getImageMetadata(int imageIndex) argument
184 read(int imageIndex, ImageReadParam param) argument
303 readRaster(int imageIndex, ImageReadParam param) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReader.java558 * @param imageIndex the index of the image to be queried.
568 public abstract int getWidth(int imageIndex) throws IOException; argument
577 * @param imageIndex the index of the image to be queried.
587 public abstract int getHeight(int imageIndex) throws IOException; argument
616 * @param imageIndex the index of the image to be queried.
628 public boolean isRandomAccessEasy(int imageIndex) throws IOException { argument
641 * <code>(float)getWidth(imageIndex)/getHeight(imageIndex)</code>.
643 * @param imageIndex the index of the image to be queried.
653 public float getAspectRatio(int imageIndex) throw argument
680 getRawImageType(int imageIndex) argument
714 getImageTypes(int imageIndex) argument
796 getMetadata(String formatName, Set nodeNames, boolean wantStream, int imageIndex) argument
850 getImageMetadata(int imageIndex) argument
900 getImageMetadata(int imageIndex, String formatName, Set<String> nodeNames) argument
939 read(int imageIndex) argument
998 read(int imageIndex, ImageReadParam param) argument
1061 readAll(int imageIndex, ImageReadParam param) argument
1286 readRaster(int imageIndex, ImageReadParam param) argument
1324 isImageTiled(int imageIndex) argument
1345 getTileWidth(int imageIndex) argument
1366 getTileHeight(int imageIndex) argument
1396 getTileGridXOffset(int imageIndex) argument
1426 getTileGridYOffset(int imageIndex) argument
1470 readTile(int imageIndex, int tileX, int tileY) argument
1516 readTileRaster(int imageIndex, int tileX, int tileY) argument
1574 readAsRenderedImage(int imageIndex, ImageReadParam param) argument
1624 hasThumbnails(int imageIndex) argument
1650 getNumThumbnails(int imageIndex) argument
1683 getThumbnailWidth(int imageIndex, int thumbnailIndex) argument
1716 getThumbnailHeight(int imageIndex, int thumbnailIndex) argument
1752 readThumbnail(int imageIndex, int thumbnailIndex) argument
2049 processImageStarted(int imageIndex) argument
2110 processThumbnailStarted(int imageIndex, int thumbnailIndex) argument
[all...]
H A DImageWriter.java841 * <code>imageIndex</code>. If this method returns
843 * <code>replaceImageMetadata(imageIndex)</code> will throw an
853 * without checking the value of <code>imageIndex</code>.
855 * @param imageIndex the index of the image whose metadata is to
865 * <code>imageIndex</code> is less than 0 or greater than the
869 public boolean canReplaceImageMetadata(int imageIndex) argument
880 * <p> If <code>canReplaceImageMetadata(imageIndex)</code> returns
889 * @param imageIndex the index of the image whose metadata is to
899 * @exception IndexOutOfBoundsException if <code>imageIndex</code>
903 public void replaceImageMetadata(int imageIndex, argument
941 canInsertImage(int imageIndex) argument
996 writeInsert(int imageIndex, IIOImage image, ImageWriteParam param) argument
1032 canRemoveImage(int imageIndex) argument
1064 removeImage(int imageIndex) argument
1244 canInsertEmpty(int imageIndex) argument
1327 prepareInsertEmpty(int imageIndex, ImageTypeSpecifier imageType, int width, int height, IIOMetadata imageMetadata, List<? extends BufferedImage> thumbnails, ImageWriteParam param) argument
1394 canReplacePixels(int imageIndex) argument
1436 prepareReplacePixels(int imageIndex, Rectangle region) argument
1752 processImageStarted(int imageIndex) argument
1813 processThumbnailStarted(int imageIndex, int thumbnailIndex) argument
1896 processWarningOccurred(int imageIndex, String warning) argument
1940 processWarningOccurred(int imageIndex, String baseName, String keyword) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageReader.java468 private void gotoImage(int imageIndex) throws IOException { argument
472 if (imageIndex < minIndex) {
478 if (imageIndex < imagePositions.size()) {
479 iis.seek(((Long)(imagePositions.get(imageIndex))).longValue());
489 index <= imageIndex;
500 if (index < imageIndex) {
507 minIndex = imageIndex;
595 private void readHeader(int imageIndex, boolean reset) argument
597 gotoImage(imageIndex);
599 currentImage = imageIndex;
706 getWidth(int imageIndex) argument
719 getHeight(int imageIndex) argument
747 getRawImageType(int imageIndex) argument
764 getImageTypes(int imageIndex) argument
774 getImageTypesOnThread(int imageIndex) argument
1002 getImageMetadata(int imageIndex) argument
1028 read(int imageIndex, ImageReadParam param) argument
1051 readInternal(int imageIndex, ImageReadParam param, boolean wantRaster) argument
1428 readRaster(int imageIndex, ImageReadParam param) argument
1470 getNumThumbnails(int imageIndex) argument
1491 getThumbnailWidth(int imageIndex, int thumbnailIndex) argument
1511 getThumbnailHeight(int imageIndex, int thumbnailIndex) argument
1531 readThumbnail(int imageIndex, int thumbnailIndex) argument
[all...]
H A DJFIFMarkerSegment.java1254 public void imageStarted(ImageReader source, int imageIndex) {} argument
1261 int imageIndex, int thumbnailIndex) {}
1260 thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java166 private void checkIndex(int imageIndex) { argument
167 if (imageIndex < minIndex) {
168 throw new IndexOutOfBoundsException("imageIndex < minIndex!");
171 minIndex = imageIndex;
175 public int getWidth(int imageIndex) throws IIOException { argument
176 checkIndex(imageIndex);
178 int index = locateImage(imageIndex);
179 if (index != imageIndex) {
186 public int getHeight(int imageIndex) throws IIOException { argument
187 checkIndex(imageIndex);
197 getImageTypes(int imageIndex) argument
270 getImageMetadata(int imageIndex) argument
570 locateImage(int imageIndex) argument
824 read(int imageIndex, ImageReadParam param) argument
[all...]
H A DGIFImageWriter.java95 private int imageIndex = 0; field in class:GIFImageWriter
470 this.imageIndex = 0;
536 this.imageIndex++;
927 processImageStarted(imageIndex);
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gif.c83 int imageIndex; local
134 for (imageIndex = 0; imageIndex < gif->ImageCount; imageIndex++) {
135 SavedImage *image = &(gif->SavedImages[imageIndex]);
258 splash->frames[imageIndex].bitmapBits =
260 if (!splash->frames[imageIndex].bitmapBits) {
266 memcpy(splash->frames[imageIndex].bitmapBits, pBitmapBits, bufferSize);
268 SplashInitFrameShape(splash, imageIndex);
270 splash->frames[imageIndex]
[all...]
H A Dsplashscreen_impl.h122 void SplashInitFrameShape(Splash * splash, int imageIndex);
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DReadingInterruptionTest.java163 int imageIndex) {} ;
183 int imageIndex,
162 imageStarted(ImageReader source, int imageIndex) argument
182 thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) argument
H A DWritingInterruptionTest.java165 int imageIndex) {} ;
179 int imageIndex,
164 imageStarted(ImageWriter source, int imageIndex) argument
178 thumbnailStarted(ImageWriter source, int imageIndex, int thumbnailIndex) argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java190 public int getWidth(int imageIndex) throws IOException { argument
191 checkIndex(imageIndex);
196 public int getHeight(int imageIndex) throws IOException { argument
197 checkIndex(imageIndex);
202 private void checkIndex(int imageIndex) { argument
203 if (imageIndex != 0) {
660 public Iterator getImageTypes(int imageIndex) argument
662 checkIndex(imageIndex);
674 public IIOMetadata getImageMetadata(int imageIndex) argument
676 checkIndex(imageIndex);
687 isRandomAccessEasy(int imageIndex) argument
693 read(int imageIndex, ImageReadParam param) argument
922 readRaster(int imageIndex, ImageReadParam param) argument
1748 imageStarted(ImageReader src, int imageIndex) argument
[all...]
H A DBMPImageWriter.java1359 public void warningOccurred(ImageWriter source, int imageIndex, String warning) {
1360 processWarningOccurred(imageIndex, warning);
1397 public void imageStarted(ImageWriter source, int imageIndex) { argument
1406 public void thumbnailStarted(ImageWriter source, int imageIndex, int thumbnailIndex) { argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java1327 public int getWidth(int imageIndex) throws IIOException { argument
1328 if (imageIndex != 0) {
1329 throw new IndexOutOfBoundsException("imageIndex != 0!");
1337 public int getHeight(int imageIndex) throws IIOException { argument
1338 if (imageIndex != 0) {
1339 throw new IndexOutOfBoundsException("imageIndex != 0!");
1347 public Iterator<ImageTypeSpecifier> getImageTypes(int imageIndex) argument
1350 if (imageIndex != 0) {
1351 throw new IndexOutOfBoundsException("imageIndex != 0!");
1543 public ImageTypeSpecifier getRawImageType(int imageIndex) argument
1563 getImageMetadata(int imageIndex) argument
1571 read(int imageIndex, ImageReadParam param) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DOutputImageTests.java345 public void imageStarted(ImageWriter source, int imageIndex) {} argument
350 int imageIndex, int thumbnailIndex) {}
349 thumbnailStarted(ImageWriter source, int imageIndex, int thumbnailIndex) argument
H A DInputImageTests.java514 public void imageStarted(ImageReader source, int imageIndex) {} argument
518 int imageIndex, int thumbnailIndex) {}
517 thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) argument
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c95 SplashInitFrameShape(Splash * splash, int imageIndex) argument
116 splash->frames[imageIndex].bitmapBits, &splash->imageFormat);
129 splash->frames[imageIndex].hRgn = ExtCreateRegion(NULL,
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m181 SplashInitFrameShape(Splash * splash, int imageIndex) {
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c106 SplashInitFrameShape(Splash * splash, int imageIndex) { argument
109 SplashImage *frame = splash->frames + imageIndex;
120 splash->frames[imageIndex].bitmapBits, &splash->imageFormat);

Completed in 334 milliseconds