libvips_ffi 0.1.0+8.16.0
libvips_ffi: ^0.1.0+8.16.0 copied to clipboard
Flutter FFI bindings for libvips - a fast, multi-threaded image processing library. Supports resize, crop, rotate, blur, sharpen, and more.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:libvips_flutter_example_base/libvips_flutter_example_base.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Vips Example',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
useMaterial3: true,
),
home: const HomePage(),
);
}
}