cloudacy / native_exif

A simple EXIF metadata reader/writer for Flutter.
MIT License
16 stars 17 forks source link

getAttribute can't get the value #5

Closed LoveBabyForeve closed 2 years ago

LoveBabyForeve commented 2 years ago

Hi there,

await exif.writeAttribute("key", "value");

final key1 = await exif.getAttribute('key');

I can't get the value

d-kuen commented 2 years ago

Hi,

it is only possible to read and write values for specific keys, determined by the platform. Please have a look at the "Platform notes" section of the Readme file.

LoveBabyForeve commented 2 years ago

Thank you for your reply