You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
602 B
25 lines
602 B
13 years ago
|
package net.yacy.peers.graphics;
|
||
15 years ago
|
|
||
|
import java.awt.image.BufferedImage;
|
||
|
|
||
|
import net.yacy.kelondro.util.ByteBuffer;
|
||
|
import net.yacy.visualization.RasterPlotter;
|
||
|
|
||
|
public class EncodedImage {
|
||
|
private ByteBuffer image;
|
||
|
private String extension;
|
||
|
|
||
|
public EncodedImage(final BufferedImage sourceImage, final String targetExt) {
|
||
|
this.image = RasterPlotter.exportImage(sourceImage, targetExt);
|
||
|
this.extension = targetExt;
|
||
|
}
|
||
|
|
||
|
public ByteBuffer getImage() {
|
||
|
return this.image;
|
||
|
}
|
||
|
|
||
|
public String getExtension() {
|
||
|
return this.extension;
|
||
|
}
|
||
|
}
|