https://github.com/sofluffyos/heif_converter_plus
https://github.com/sofluffyos/heif_converter_plus
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sofluffyos/heif_converter_plus
- Owner: SoFluffyOS
- License: mit
- Created: 2024-12-17T03:30:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-17T04:30:38.000Z (over 1 year ago)
- Last Synced: 2025-10-31T09:46:01.256Z (9 months ago)
- Language: Dart
- Size: 190 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# HEIF Converter
#### Original package: [heif_converter](https://pub.dev/packages/heif_converter)
Flutter plugin to convert HEIC/HEIF file to PNG/JPEG image.
## Installation
Add the Package
```yaml
dependencies:
heif_converter: ^lastVersion
```
## How to use
Import the package in your dart file
```dart
import 'package:heif_converter/heif_converter.dart';
```
And call convert method with local HEIC/HEIF image file path.
```dart
String jpgPath = await HeifConverter.convert(heicPath, output: jpgPath);
String pngPath = await HeifConverter.convert(heicPath, format: 'png');
```