1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.commons.imaging.formats.jpeg.iptc;
19
20 import java.io.File;
21 import java.io.IOException;
22 import java.util.List;
23
24 import org.apache.commons.imaging.AbstractImagingTest;
25 import org.apache.commons.imaging.ImagingException;
26 import org.apache.commons.imaging.bytesource.ByteSource;
27 import org.apache.commons.imaging.formats.jpeg.JpegImageParser;
28
29 public abstract class IptcBaseTest extends AbstractImagingTest {
30 private static final ImageFilter HAS_IPTC_IMAGE_FILTER = IptcBaseTest::hasIptcData;
31
32 private static final ImageFilter JPEG_IMAGE_FILTER = file -> file.getName().toLowerCase().endsWith(".jpg");
33
34 protected static List<File> getImagesWithIptcData() throws IOException, ImagingException {
35 return getTestImages(HAS_IPTC_IMAGE_FILTER);
36 }
37
38 protected static List<File> getJpegImages() throws IOException, ImagingException {
39 return getTestImages(JPEG_IMAGE_FILTER);
40 }
41
42 protected static boolean hasIptcData(final File file) {
43
44
45 if (!file.getName().toLowerCase().endsWith(".jpg")) {
46 return false;
47
48
49
50 }
51
52 try {
53 final ByteSource byteSource = ByteSource.file(file);
54 return new JpegImageParser().hasIptcSegment(byteSource);
55 } catch (final Exception e) {
56
57
58 return false;
59 }
60 }
61
62 protected List<File> getImagesWithIptcData(final int max) throws IOException, ImagingException {
63 return getTestImages(HAS_IPTC_IMAGE_FILTER, max);
64 }
65
66 protected File getImageWithIptcData() throws IOException, ImagingException {
67 return getTestImage(HAS_IPTC_IMAGE_FILTER);
68 }
69
70 protected File getJpegImage() throws IOException, ImagingException {
71 return getTestImage(JPEG_IMAGE_FILTER);
72 }
73
74 protected List<File> getJpegImages(final int max) throws IOException, ImagingException {
75 return getTestImages(JPEG_IMAGE_FILTER, max);
76 }
77
78 }