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

JPEG-to-JPEG XL compression for Flutter, with byte-exact original JPEG and metadata recovery

example/lib/main.dart

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'),
        ),
      ),
    );
  }
}
3
likes
160
points
535
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

JPEG-to-JPEG XL compression for Flutter, with byte-exact original JPEG and metadata recovery

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on jxl_coder

Packages that implement jxl_coder