houssam el atmani
houssam el atmani
https://github.com/houssam15/easy_charge/issues/2
```dart final originalExif = await Exif.fromPath(widget.file.path); dynamic originMetaDataAttributes = await originalExif.getAttributes(); originMetaDataAttributes['PixelXDimension'] = controller.croppedImage?.width; originMetaDataAttributes['PixelYDimension'] = controller.croppedImage?.height; final tempPath = '${directory.path}/${DateTime.now().millisecondsSinceEpoch.toString()}_edited.${widget.extension}'; await File(tempPath).writeAsBytes(imageBytes); final exif = await Exif.fromPath(tempPath); await exif.writeAttributes(originMetaDataAttributes);...