asset에서 읽은 이미지 base64 인코딩 된 이미지로 private HashMap createInstallManagerInfo() throws Exception { HashMap installHashMap = new HashMap(); //asset에서 읽은 이미지 -> bas64 인코딩된 이미지로 AssetManager assetManager = getResources().getAssets(); InputStream is = null; is = assetManager.open("seal.jpg"); byte[] buf = new byte[1024]; int bytesRead; ByteArrayOutputStream output = new ByteArrayOutputStream(); while ((..