EXIF library for scala 2.12?

Hi all,

I’m trying to use a scala library to manipulate exif datas on jpeg images.
Actually on Scala-index is available “slibexif”, but it says that it’s available only for scala 2.10 and 2.11 while I’m using scala 2.12 so, can I use a similar library to edita exif datas, in scala 2.12?

Do you know if is available some other similar library?

Thank you

Did you look to see what Java libraries are available? For specialized needs like this, it’s common for Scala programmers to just use Java libraries directly.

You’re right. Maybe it’s the only way.

Thank you