https://github.com/joutvhu/heif_converter
Flutter plugin to convert HEIC/HEIF file to PNG/JPEG image.
https://github.com/joutvhu/heif_converter
converter heic heif image jpeg png
Last synced: 6 months ago
JSON representation
Flutter plugin to convert HEIC/HEIF file to PNG/JPEG image.
- Host: GitHub
- URL: https://github.com/joutvhu/heif_converter
- Owner: joutvhu
- License: mit
- Created: 2023-03-19T18:57:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-24T02:11:30.000Z (8 months ago)
- Last Synced: 2025-04-18T02:44:59.325Z (6 months ago)
- Topics: converter, heic, heif, image, jpeg, png
- Language: Dart
- Homepage: https://pub.dev/packages/heif_converter
- Size: 211 KB
- Stars: 5
- Watchers: 1
- Forks: 10
- Open Issues: 5
-
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
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');
```