十六、Java 9 新特性 – 多分辨率图像 API

十六、Java 9 新特性 – 多分辨率图像 API

master ,这是我的小站,欢迎访问哦~~

Java 9 引入了一种新的多分辨率图像 API,它支持具有不同分辨率变体的多个图像

这些 API 允许将具有不同分辨率的一组图像用作单个多分辨率图像

方法说明
getResolutionVariant(double destImageWidth, double destImageHeight)获取特定图像,该图像是表示指定大小的逻辑图像的最佳变体
getResolutionVariants()以可读列表的形式返回所有分辨率变体

接下来我们就来看看两个 API 如何使用吧。

假设存在三张图片

img_1.pngimg_2.pngimg_3.png

它们的地址分别为

1
2
3
4
5
XXXX/upload/img/2022/05/06/03_1.png

XXXX/upload/img/2022/05/06/03_2.png

XXXX/upload/img/2022/05/06/03_3.png

在当前的工作区中创建一个文件 MultiResolutionTester.java 并输入以下内容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import java.io.IOException;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.ArrayList;
import java.util.List;
import java.awt.Image;
import java.awt.image.MultiResolutionImage;
import java.awt.image.BaseMultiResolutionImage;

import javax.imageio.ImageIO;

public class MultiResolutionTester {
public static void main(String[] args) throws IOException, MalformedURLException {

List<String> imgUrls = List.of("XXXX/upload/img/2022/05/06/03_1.png",
"XXXX/upload/img/2022/05/06/03_2.png",
"XXXX/upload/img/2022/05/06/03_3.png");

List<Image> images = new ArrayList<Image>();

for (String url : imgUrls) {
images.add(ImageIO.read(new URL(url)));
}

// read all images into one multiresolution image
MultiResolutionImage multiResolutionImage =
new BaseMultiResolutionImage(images.toArray(new Image[0]));

// get all variants of images
List<Image> variants = multiResolutionImage.getResolutionVariants();

System.out.println("Total number of images: " + variants.size());

for (Image img : variants) {
System.out.println(img);
}

// get a resolution-specific image variant for each indicated size
Image variant1 = multiResolutionImage.getResolutionVariant(156, 45);
System.out.printf("\nImage for destination[%d,%d]: [%d,%d]",
156, 45, variant1.getWidth(null), variant1.getHeight(null));

Image variant2 = multiResolutionImage.getResolutionVariant(311, 89);
System.out.printf("\nImage for destination[%d,%d]: [%d,%d]", 311, 89,
variant2.getWidth(null), variant2.getHeight(null));

Image variant3 = multiResolutionImage.getResolutionVariant(622, 178);
System.out.printf("\nImage for destination[%d,%d]: [%d,%d]", 622, 178,
variant3.getWidth(null), variant3.getHeight(null));

Image variant4 = multiResolutionImage.getResolutionVariant(300, 300);
System.out.printf("\nImage for destination[%d,%d]: [%d,%d]", 300, 300,
variant4.getWidth(null), variant4.getHeight(null));
}
}

运行结果如下

1
2
3
4
5
6
7
8
9
10
$ javac MultiResolutionTester.java && java MultiResolutionTester
Total number of images: 3
BufferedImage@c267ef4: type = 6 ColorModel: #pixelBits = 32 numComponents = 4 color space = java.awt.color.ICC_ColorSpace@32eff876 transparency = 3 has alpha = true isAlphaPre = false ByteInterleavedRaster: width = 32 height = 32 #numDataElements 4 dataOff[0] = 3
BufferedImage@9f116cc: type = 6 ColorModel: #pixelBits = 32 numComponents = 4 color space = java.awt.color.ICC_ColorSpace@32eff876 transparency = 3 has alpha = true isAlphaPre = false ByteInterleavedRaster: width = 64 height = 64 #numDataElements 4 dataOff[0] = 3
BufferedImage@12468a38: type = 6 ColorModel: #pixelBits = 32 numComponents = 4 color space = java.awt.color.ICC_ColorSpace@32eff876 transparency = 3 has alpha = true isAlphaPre = false ByteInterleavedRaster: width = 128 height = 128 #numDataElements 4 dataOff[0] = 3

Image for destination[156,45]: [128,128]
Image for destination[311,89]: [128,128]
Image for destination[622,178]: [128,128]
Image for destination[300,300]: [128,128]

可以看到,这些 API 还会非常的有趣的