remove now unused ImageFrame object

This commit is contained in:
Gered 2014-04-05 16:30:49 -04:00
parent e7f88969e8
commit 67ccf4cd4d
2 changed files with 1 additions and 21 deletions

View file

@ -5,7 +5,7 @@
(java.awt.image BufferedImage) (java.awt.image BufferedImage)
(java.net URL) (java.net URL)
(java.io File InputStream) (java.io File InputStream)
(clj_image2ascii.java ImageToAscii AnimatedGif ImageFrame))) (clj_image2ascii.java ImageToAscii AnimatedGif)))
(defn get-image-by-url (defn get-image-by-url
"returns a BufferedImage loaded from a URL pointing to an image, or null if an "returns a BufferedImage loaded from a URL pointing to an image, or null if an

View file

@ -1,20 +0,0 @@
package clj_image2ascii.java;
import java.awt.image.BufferedImage;
/**
* Holds information about a single image frame from an animated GIF.
* @author SteveH (http://stackoverflow.com/a/18425922)
* @author gered (_extremely_ minor tweaks)
*/
public class ImageFrame {
public final int delay;
public final BufferedImage image;
public final String disposal;
public ImageFrame(BufferedImage image, int delay, String disposal) {
this.image = image;
this.delay = delay;
this.disposal = disposal;
}
}