como posso recuperar a imagem sendo que ela se encontra no seguinte formato
0xFFD8FFE000104A46494600010100000100010000FFDB0
04300100B0C0E0C0A100E0D0E1211101318281A1816161
83123251D283A333D3C3933383740485C4E40445745373
8506D51575F626768673E4D71797064785C656763FFDB0
043011112121815182F1A1A2F6342384263636363636363
636363636363636363636363
o exemplo abaixo pode ajudar em alguma coisa ? (exceto por tracar um linha ehheehehehh)…
private static ImageIcon criarImagem() {
int width=200, height=200;
BufferedImage buffer = new BufferedImage( width, height, BufferedImage.TYPE_INT_RGB );
Graphics g = buffer.createGraphics();
g.setColor( Color.WHITE );
g.fillRect( 0, 10, width, height );
g.setColor( Color.BLACK );
g.drawLine( 0, 0, width, height );
return new ImageIcon( buffer );
}