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

dart:io process wrapper for local or Docker-backed gifsicle workflows.

example/gifsicle_example.dart

import 'package:gifsicle/gifsicle.dart';

Future<void> main() async {
  bool supported = await Gifsicle.isSupported();
  print('gifsicle supported: $supported');

  if (!supported) {
    return;
  }

  GifsicleClient client = GifsicleClient();
  String version = await client.version();
  print(version);
}
0
likes
140
points
112
downloads

Documentation

API reference

Publisher

verified publisherarcane.art

Weekly Downloads

dart:io process wrapper for local or Docker-backed gifsicle workflows.

License

GPL-3.0 (license)

More

Packages that depend on gifsicle