flutter_image_conversion 1.0.0 copy "flutter_image_conversion: ^1.0.0" to clipboard
flutter_image_conversion: ^1.0.0 copied to clipboard

A lightweight Flutter plugin that enables conversion of HEIC images to JPEG or PNG format directly on iOS devices. Ideal for apps targeting image uploads, social sharing, or cross-platform compatibility.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_image_conversion_example/gallery.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(home: Gallery());
  }
}
0
likes
150
points
53
downloads

Publisher

unverified uploader

Weekly Downloads

A lightweight Flutter plugin that enables conversion of HEIC images to JPEG or PNG format directly on iOS devices. Ideal for apps targeting image uploads, social sharing, or cross-platform compatibility.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_image_conversion