converter_buddy 0.1.0

File format conversion library. Provides conversion utilities between files with different formats.
Documentation
mod bmp;
mod gif;
mod img_utils;
mod jpeg;
mod png;
mod svg;
mod tiff;
mod webp;

pub use bmp::BmpConverter;
pub use gif::GifConverter;
pub use img_utils::*;
pub use jpeg::JpegConverter;
pub use png::PngConverter;
pub use svg::SvgConverter;
pub use tiff::TiffConverter;
pub use webp::WebPConverter;

use crate::format::Format;

pub static SUPPORTED_FORMATS: [Format; 7] = [
    Format::Png,
    Format::Jpeg,
    Format::Tiff,
    Format::Bmp,
    Format::Gif,
    Format::Svg,
    Format::WebP,
];