View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
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          // Debug.debug("hasIptcData file", file.getAbsoluteFile());
44  
45          if (!file.getName().toLowerCase().endsWith(".jpg")) {
46              return false;
47              // ImageFormat format = Imaging.guessFormat(file);
48              // if (format != ImageFormat.IMAGE_FORMAT_JPEG)
49              // return false;
50          }
51  
52          try {
53              final ByteSource byteSource = ByteSource.file(file);
54              return new JpegImageParser().hasIptcSegment(byteSource);
55          } catch (final Exception e) {
56              // Debug.debug("Error file", file.getAbsoluteFile());
57              // Debug.debug(e, 4);
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  }