[LIB-9] Add original chesshog source files
[chesshog.git] / src / main / java / org / hedgecode / chess / img / ImageFormat.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.img;
18
19 import javax.imageio.ImageIO;
20
21 /**
22  * Supported image formats for reading/writing.
23  *
24  * @author Dmitry Samoshin aka gotty
25  */
26 public enum ImageFormat {
27
28     PNG ( new String[]{"png"} ),
29     GIF ( new String[]{"gif"} ),
30     JPG ( new String[]{"jpg", "jpeg"} ),
31     SVG ( new String[]{"svg"} ), // todo
32     BMP ( new String[]{"bmp", "wbmp"} );
33
34     private String[] fortmatExts;
35
36     private boolean isRead;
37     private boolean isWrite;
38
39     ImageFormat(String[] exts) {
40         fortmatExts = exts;
41         isRead = isExist(
42                 ImageIO.getReaderFormatNames(), fortmatExts
43         );
44         isWrite = isExist(
45                 ImageIO.getWriterFormatNames(), fortmatExts
46         );
47     }
48
49     public String getExt() {
50         return fortmatExts[0];
51     }
52
53     public String[] getExts() {
54         return fortmatExts;
55     }
56
57     public boolean isRead() {
58         return isRead;
59     }
60
61     public boolean isWrite() {
62         return isWrite;
63     }
64
65     public static ImageFormat findFormat(String formatName) {
66         if (formatName != null) {
67             for (ImageFormat imageFormat : ImageFormat.values()) {
68                 if (isExist(imageFormat.getExts(), formatName))
69                     return imageFormat;
70             }
71         }
72         return null;
73     }
74
75     private static boolean isExist(String[] names, String... args) {
76         for (String arg : args) {
77             for (String name : names) {
78                 if (arg.equalsIgnoreCase(name))
79                     return true;
80             }
81         }
82         return false;
83     }
84
85
86 /*
87     public static void main(String[] args) {
88         ImageFormat imageFormat = JPG;
89         System.out.println("Supported format: " + imageFormat);
90         imageFormat = findFormat("jpeg");
91         imageFormat = findFormat("svg");
92         imageFormat = findFormat("jpeeg");
93     }
94 */
95
96 }