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.
yacy_search_server/source/net/yacy/peers/graphics/EncodedImage.java

25 lines
602 B

package net.yacy.peers.graphics;
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;
}
}