Hello
I converted some image with transparent area but output format have change the transparent are to white be below code in java.
try (Image image = Image.load(FPath)) {
JpegOptions options = new JpegOptions();
image.save(FOUT, options);
output++;
image.close();
}catch (Exception e) {
}
so can I remains transparent back ground ?