Class BaseMultiResolutionImage
- java.lang.Object
-
- java.awt.Image
-
- java.awt.image.AbstractMultiResolutionImage
-
- java.awt.image.BaseMultiResolutionImage
- All Implemented Interfaces:
MultiResolutionImage
public class BaseMultiResolutionImage extends AbstractMultiResolutionImage
This class is an array-based implementation of the AbstractMultiResolutionImage
class. This class will implement the getResolutionVariant(double destImageWidth, double destImageHeight)
method using a simple algorithm which will return the first image variant in the array that is large enough to satisfy the rendering request. The last image in the array will be returned if no suitable image is found that is as large as the rendering request.
For best effect the array of images should be sorted with each image being both wider and taller than the previous image. The base image need not be the first image in the array. No exception will be thrown if the images are not sorted as suggested.
- Since:
- 9
- See Also:
-
Image
,MultiResolutionImage
,AbstractMultiResolutionImage
Fields
Fields declared in class java.awt.Image
accelerationPriority, SCALE_AREA_AVERAGING, SCALE_DEFAULT, SCALE_FAST, SCALE_REPLICATE, SCALE_SMOOTH, UndefinedProperty
Constructors
Constructor | Description |
---|---|
BaseMultiResolutionImage(int baseImageIndex,
Image... resolutionVariants) | Creates a multi-resolution image with the given base image index and resolution variants. |
BaseMultiResolutionImage(Image... resolutionVariants) | Creates a multi-resolution image with the given resolution variants. |
Methods
Methods declared in class java.awt.image.AbstractMultiResolutionImage
getBaseImage, getGraphics, getHeight, getProperty, getSource, getWidth
Methods declared in class java.awt.Image
flush, getAccelerationPriority, getCapabilities, getScaledInstance, setAccelerationPriority
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface java.awt.image.MultiResolutionImage
getResolutionVariant, getResolutionVariants
Constructors
BaseMultiResolutionImage
public BaseMultiResolutionImage(Image... resolutionVariants)
Creates a multi-resolution image with the given resolution variants. The first resolution variant is used as the base image.
- Parameters:
-
resolutionVariants
- array of resolution variants sorted by image size - Throws:
-
IllegalArgumentException
- if null or zero-length array is passed -
NullPointerException
- if the specifiedresolutionVariants
contains one or more null elements - Since:
- 9
BaseMultiResolutionImage
public BaseMultiResolutionImage(int baseImageIndex, Image... resolutionVariants)
Creates a multi-resolution image with the given base image index and resolution variants.
- Parameters:
-
baseImageIndex
- the index of base image in the resolution variants array -
resolutionVariants
- array of resolution variants sorted by image size - Throws:
-
IllegalArgumentException
- if null or zero-length array is passed -
NullPointerException
- if the specifiedresolutionVariants
contains one or more null elements -
IndexOutOfBoundsException
- ifbaseImageIndex
is negative or greater than or equal toresolutionVariants
length. - Since:
- 9
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/image/BaseMultiResolutionImage.html