nokiatech / heif

High Efficiency Image File Format
Other
1.74k stars 247 forks source link

Example of converting heic to jpg in Java #94

Open SergioMordente opened 3 years ago

SergioMordente commented 3 years ago

I used: <try { HEIF heif = new HEIF ("home / sergio / IMG433.heic"); ImageItem primaryImage = heif.getPrimaryImage (); int width = primaryImage.getSize (). width; int height = primaryImage.getSize (). height; System.out.println (width + "x" + height); // OK! 4032 x 3024>

How to save to jpg?

mabla226 commented 1 year ago

Did you find how to convert ?