List of usage examples for java.awt.image ImageConsumer IMAGEABORTED
int IMAGEABORTED
To view the source code for java.awt.image ImageConsumer IMAGEABORTED.
Click Source Link
From source file:GifEncoder.java
public void imageComplete(int status) { producer.removeConsumer(this); if (status == ImageConsumer.IMAGEABORTED) iox = new IOException("image aborted"); else {/*from w w w . j a v a2 s.c o m*/ try { encodeFinish(); encodeDone(); } catch (IOException e) { iox = e; } } stop(); }