jxl_coder 1.0.0
jxl_coder: ^1.0.0 copied to clipboard
JPEG-to-JPEG XL compression for Flutter, with byte-exact original JPEG and metadata recovery
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('JXL Coder example'),
),
body: const Center(
child: Text('JPEG ↔ JPEG XL lossless transcoding'),
),
),
);
}
}