gg_image_tools 1.1.0 copy "gg_image_tools: ^1.1.0" to clipboard
gg_image_tools: ^1.1.0 copied to clipboard

Various tools for image organization. They help to organize folders with images

example/gg_image_tools_example.dart

#!/usr/bin/env dart
// @license
// Copyright (c) 2019 - 2024 Dr. Gabriel Gatzsche. All Rights Reserved.
//
// Use of this source code is governed by terms that can be
// found in the LICENSE file in the root of this package.

import 'dart:io';

import 'package:gg_image_tools/src/split/split.dart';

Future<void> main() async {
  final input = Directory('./test/images');
  final output = Directory.systemTemp.createTempSync();

  final ggImageTools = Split(
    input: input,
    output: output,
    log: print,
  );

  await ggImageTools.exec();

  print('Done.');
}
1
likes
160
points
30
downloads

Publisher

verified publisherinlavigo.com

Weekly Downloads

Various tools for image organization. They help to organize folders with images

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

args, colorize, exif, gg_args, path, recase

More

Packages that depend on gg_image_tools