remove now unused ImageFrame object
This commit is contained in:
parent
e7f88969e8
commit
67ccf4cd4d
|
@ -5,7 +5,7 @@
|
|||
(java.awt.image BufferedImage)
|
||||
(java.net URL)
|
||||
(java.io File InputStream)
|
||||
(clj_image2ascii.java ImageToAscii AnimatedGif ImageFrame)))
|
||||
(clj_image2ascii.java ImageToAscii AnimatedGif)))
|
||||
|
||||
(defn get-image-by-url
|
||||
"returns a BufferedImage loaded from a URL pointing to an image, or null if an
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue