xdev.ui.ImageFileFilter Maven / Gradle / Ivy
/*
* XDEV Application Framework - XDEV Application Framework
* Copyright © 2003 XDEV Software (https://xdev.software)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package xdev.ui;
import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.Set;
import javax.imageio.ImageIO;
/**
* A XdevFileFilter which filters all supported images.
*
* @see #getInstance()
* @see #getSupportedImageExtensions()
*
* @author XDEV Software
*
*/
public class ImageFileFilter extends XdevFileFilter
{
private static ImageFileFilter instance;
/**
* Returns the single instance of the image file filter.
*
* @return the image file filter singleton
*/
public static ImageFileFilter getInstance()
{
if(instance == null)
{
instance = new ImageFileFilter();
}
return instance;
}
/**
* Creates a new image file filter.
*/
protected ImageFileFilter()
{
super(UIResourceBundle.getString("filefilter.supportedimages"),
getSupportedImageExtensions());
}
/**
* Returns all supported image format extensions, as an lowercase string
* array.
*
* Default supported images, may vary depending on the platform this
* application is running on:
*
* - jpg
* - gif
* - png
* - bmp
* - wbmp
*
*
* @return All supported image format extensions
*/
public static String[] getSupportedImageExtensions()
{
Set set = new LinkedHashSet();
for(String str : ImageIO.getWriterFormatNames())
{
set.add(str.toLowerCase());
}
String[] extensions = set.toArray(new String[set.size()]);
Arrays.sort(extensions);
return extensions;
}
/**
* Checks if format
is a supported image format and returns an
* optional case-corrected format string.
*
* @param format
* the image format to check, e.g. "gif", "png", "jpg"
* @return optional case-corrected format string or format
* @throws IllegalArgumentException
* if format
is not supported
*/
public static String checkImageFormat(String format) throws IllegalArgumentException
{
format = format.toLowerCase();
String[] supportedFormats = ImageFileFilter.getSupportedImageExtensions();
for(String supportedFormat : supportedFormats)
{
if(supportedFormat.equals(format))
{
return format;
}
}
throw new IllegalArgumentException("Unsupported format: " + format
+ ", supported formats: " + Arrays.toString(supportedFormats));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy