mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-05-28 00:30:23 -04:00
The goal of MR is to control the correct saving of metadata and resolution in plugins that support them. - Modified the basic write test to verify that resolution and metadata are saved correctly. - Verifies the correct functioning of MicroExif in plugins that use it to save metadata. - EXR: fixed wrong vertical resolution (error found with this MR). - Added EXR, JXR, JXL, PCX metadata test.
42 lines
862 B
JSON
42 lines
862 B
JSON
{
|
|
"format" : "exr",
|
|
"metadata" : [
|
|
{
|
|
"key" : "CreationDate",
|
|
"value" : "2025-01-14T13:53:32+01:00"
|
|
},
|
|
{
|
|
"key" : "Altitude",
|
|
"value" : "34"
|
|
},
|
|
{
|
|
"key" : "Latitude",
|
|
"value" : "44.6478"
|
|
},
|
|
{
|
|
"key" : "LensManufacturer",
|
|
"value" : "KDE Glasses"
|
|
},
|
|
{
|
|
"key" : "LensModel",
|
|
"value" : "A1234"
|
|
},
|
|
{
|
|
"key" : "Longitude",
|
|
"value" : "10.9254"
|
|
},
|
|
{
|
|
"key" : "Manufacturer",
|
|
"value" : "KFramework"
|
|
},
|
|
{
|
|
"key" : "Model",
|
|
"value" : "KImageFormats"
|
|
}
|
|
],
|
|
"resolution" : {
|
|
"dotsPerMeterX" : 10000,
|
|
"dotsPerMeterY" : 12000
|
|
}
|
|
}
|