Is there any library/code (compatible with java) available to convert a .jpg file format to .snb (S memo) format? (not the reverse direction)
I normally use this for compressed file ->bitmap->file compressed, but it hasn't got .snb
void save_bm_image( Bitmap gBitmap, String bname, String fname ){
File file = new File (bname, fname);
if (file.exists ()) file.delete ();
try {
FileOutputStream out = new FileOutputStream(file);
gBitmap.compress(Bitmap.CompressFormat.PNG, 90, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
}