I am trying to update the property details of a jpg file on runtime in java, like Copyright, title , subject , author etc.
Is it possible?
Thanks!
I am trying to update the property details of a jpg file on runtime in java, like Copyright, title , subject , author etc.
Is it possible?
Thanks!
There are two ways to do this:
The Easy Way
Use a library which can perform the task for you. Few lines of code.
For example:
https://drewnoakes.com/code/exif/
The Hard Way
Learn about the JPEG file format and do it manually.