Arquivo de 11 de Setembro de 2009
Transformar Imagem + Texto + File Destransformar etc
Sexta, 11 de Setembro de 2009public class Image64 {
public static String imagemToString(String url) throws FileNotFoundException, IOException{
BASE64Encoder e = new BASE64Encoder();
FileImageInputStream in = new FileImageInputStream(new File(url));
int size = (int) in.length();
[…]





