Searched refs:thumbnails (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/
H A DIIOImage.java73 * A <code>List</code> of <code>BufferedImage</code> thumbnails,
77 protected List<? extends BufferedImage> thumbnails = null; field in class:IIOImage
87 * <code>RenderedImage</code>, and thumbnails and metadata
92 * <p> The <code>thumbnails</code> argument must either be
97 * @param thumbnails a <code>List</code> of <code>BufferedImage</code>s,
106 List<? extends BufferedImage> thumbnails,
113 this.thumbnails = thumbnails;
119 * <code>Raster</code>, and thumbnails and metadata
125 * @param thumbnails
105 IIOImage(RenderedImage image, List<? extends BufferedImage> thumbnails, IIOMetadata metadata) argument
133 IIOImage(Raster raster, List<? extends BufferedImage> thumbnails, IIOMetadata metadata) argument
294 setThumbnails(List<? extends BufferedImage> thumbnails) argument
[all...]
H A DImageReader.java513 * Returns the number of images, not including thumbnails, available
1003 * an <code>IIOImage</code> containing the image, thumbnails, and
1045 * of the image, a set of thumbnails, and associated image
1069 ArrayList thumbnails = null;
1072 thumbnails = new ArrayList();
1074 thumbnails.add(readThumbnail(imageIndex, j));
1079 return new IIOImage(im, thumbnails, metadata);
1084 * thumbnails, and metadata, starting at the index given by
1191 ArrayList thumbnails = null;
1194 thumbnails
[all...]
H A DImageWriter.java426 * Returns the number of thumbnails suported by the format being
451 * @return the number of thumbnails that may be written given the
466 * advisory; the writer will resize any supplied thumbnails as
526 * associated stream and image metadata and thumbnails to the
543 * <p> The supplied thumbnails will be resized if needed, and any
544 * thumbnails in excess of the supported number will be ignored.
545 * If the format requires additional thumbnails that are not
561 * image, thumbnails, and metadata to be written.
581 * default metadata and thumbnails to the output. This method is
585 * image, thumbnails, an
1167 prepareWriteEmpty(IIOMetadata streamMetadata, ImageTypeSpecifier imageType, int width, int height, IIOMetadata imageMetadata, List<? extends BufferedImage> thumbnails, ImageWriteParam param) argument
1327 prepareInsertEmpty(int imageIndex, ImageTypeSpecifier imageType, int width, int height, IIOMetadata imageMetadata, List<? extends BufferedImage> thumbnails, ImageWriteParam param) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.java66 * marker segments, for different varieties of thumbnails, and for
433 * The list of thumbnails is matched to the list of JFXX extension
435 * thumbnails. If there are more thumbnails than metadata segments,
436 * default encoding is used for the extra thumbnails.
439 List thumbnails,
441 if (thumbnails != null) {
443 if (thumbnails.size() == 1) {
448 (BufferedImage) thumbnails.get(0),
456 for (int i = 0; i < thumbnails
438 writeWithThumbs(ImageOutputStream ios, List thumbnails, JPEGImageWriter writer) argument
606 writeDefaultJFIF(ImageOutputStream ios, List thumbnails, ICC_Profile iccProfile, JPEGImageWriter writer) argument
[all...]
H A DJPEGImageWriter.java108 * If there are thumbnails to be written, this is the list.
110 private List thumbnails = null; field in class:JPEGImageWriter
134 private boolean forceJFIF = false; // Add one for the thumbnails
883 thumbnails = image.getThumbnails();
886 // determine if thumbnails can be written
888 // then thumbnails can be written
890 // If there is no metadata, then we can't write thumbnails
892 thumbnails = null;
902 thumbnails = null; // Or we can't include thumbnails
[all...]
H A DJPEGMetadata.java76 * JPEG. This is used to enforce the prohibition of JFIF thumbnails
2336 List thumbnails,
2343 // Write a default JFIF segment, including thumbnails
2347 thumbnails,
2368 jfif.writeWithThumbs(ios, thumbnails, writer);
2333 writeToStream(ImageOutputStream ios, boolean ignoreJFIF, boolean forceJFIF, List thumbnails, ICC_Profile iccProfile, boolean ignoreAdobe, int newAdobeTransform, JPEGImageWriter writer) argument

Completed in 49 milliseconds