Interface ImageSaver

All Known Implementing Classes:
PNGImageSaver

public interface ImageSaver
Interface for classes performing image saving.
Author:
Alexandre Iline (alexandre.iline@sun.com)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    save(BufferedImage image, String fileName)
    Should save image into file.
  • Method Details

    • save

      void save(BufferedImage image, String fileName) throws IOException
      Should save image into file.
      Parameters:
      image - an image to be saved.
      fileName - a file to load image from.
      Throws:
      IOException