Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

Flutter plugin to convert HEIC/HEIF file to PNG/JPEG image.

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');
```