Class ImageFilter

java.lang.Object
javax.swing.filechooser.FileFilter
com.lowagie.toolbox.arguments.filters.ImageFilter

public class ImageFilter extends FileFilter
Filters images in a FileChooser.
Since:
2.1.1 (imported from itexttoolbox project)
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean[]
    array that enables you to filter on image types.
    static final String[]
    Array with all kinds of image extensions.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructs an ImageFilter allowing all images.
    ImageFilter(boolean jpeg, boolean png, boolean gif, boolean bmp, boolean wmf, boolean tiff)
    Constructs an ImageFilter allowing some images.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • IMAGES

      public static final String[] IMAGES
      Array with all kinds of image extensions.
    • filter

      public boolean[] filter
      array that enables you to filter on image types.
  • Constructor Details

    • ImageFilter

      public ImageFilter()
      Constructs an ImageFilter allowing all images.
    • ImageFilter

      public ImageFilter(boolean jpeg, boolean png, boolean gif, boolean bmp, boolean wmf, boolean tiff)
      Constructs an ImageFilter allowing some images.
      Parameters:
      jpeg - indicates if jpegs are allowed
      png - indicates if pngs are allowed
      gif - indicates if gifs are allowed
      bmp - indicates if bmps are allowed
      wmf - indicates if wmfs are allowed
      tiff - indicates if tiffs are allowed
  • Method Details