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.png;
19  
20  import static org.junit.jupiter.api.Assertions.assertNotNull;
21  import static org.junit.jupiter.api.Assertions.assertTrue;
22  
23  import java.awt.image.BufferedImage;
24  import java.io.File;
25  import java.nio.file.Files;
26  
27  import org.apache.commons.imaging.ImageFormats;
28  import org.apache.commons.imaging.Imaging;
29  import org.apache.commons.imaging.ImagingTestConstants;
30  import org.apache.commons.imaging.internal.Debug;
31  import org.apache.commons.io.FilenameUtils;
32  import org.junit.jupiter.api.Test;
33  
34  public class PngMultipleRoundtripTest extends AbstractPngTest {
35  
36      @Test
37      public void test() throws Exception {
38          final String imagesFolderPath = FilenameUtils.separatorsToSystem(ImagingTestConstants.TEST_DATA_SOURCE_FOLDER + "/images/png/3");
39          final File imagesFolder = new File(imagesFolderPath);
40          assertTrue(imagesFolder.exists() && imagesFolder.isDirectory());
41  
42          final File[] files = imagesFolder.listFiles();
43          for (final File file : files) {
44              final File imageFile = file;
45              if (!imageFile.isFile()) {
46                  continue;
47              }
48              if (!imageFile.getName().toLowerCase().endsWith(".png")) {
49                  continue;
50              }
51  
52              Debug.debug();
53              Debug.debug("imageFile", imageFile);
54  
55              File lastFile = imageFile;
56              for (int j = 0; j < 10; j++) {
57                  final BufferedImage image = Imaging.getBufferedImage(lastFile);
58                  assertNotNull(image);
59  
60                  final File tempFile = Files.createTempFile(imageFile.getName() + "." + j + ".", ".png").toFile();
61                  Debug.debug("tempFile", tempFile);
62  
63                  Imaging.writeImage(image, tempFile, ImageFormats.PNG);
64  
65                  lastFile = tempFile;
66              }
67          }
68      }
69  
70  }