ascii_art_converter 1.0.2 copy "ascii_art_converter: ^1.0.2" to clipboard
ascii_art_converter: ^1.0.2 copied to clipboard

Converts images to ASCII art with customizable character sets and colors.

example/example.dart

import 'dart:io';
import 'package:ascii_art_converter/ascii_art_converter.dart';

void main() async {
  const filePath = 'image.png'; //Change to a valid file path
  final image = File(filePath);
  final imageBytes = await image.readAsBytes();
  const converter = AsciiArtConverter();
  final art = await converter.convert(imageBytes);

  print(art);
}
0
likes
160
points
143
downloads
screenshot

Publisher

unverified uploader

Weekly Downloads

Converts images to ASCII art with customizable character sets and colors.

Repository (GitHub)
View/report issues

Topics

#ascii #art #image-processing #converter #cli

Documentation

API reference

License

MIT (license)

Dependencies

args, image

More

Packages that depend on ascii_art_converter