Git Product home page Git Product logo

jpeg-turbod's Introduction

jpeg-turbod

A D wrapper for libjpeg-turbo.

Currently working on MacOS and Windows. Linux compatibility pending.

Requirements

Usage

First install via dub: dub add jpeg-turbod

Then use in your program like so:

import std.file : read, write;
import std.stdio : writefln, writeln;

import jpeg_turbod;

void main()
{
    const auto jpegFile = "image-in.jpg";
    auto jpegInput = cast(ubyte[]) jpegFile.read;

    auto dc = new Decompressor();
    ubyte[] pixels;
    int width, height;
    bool decompressed = dc.decompress(jpegInput, pixels, width, height);

    if (decompressed)
    {
        writefln("JPEG dimensions: %s x %s", width, height);
        writefln("First pixel: [%s, %s, %s]", pixels[0], pixels[1], pixels[2]);
    }
    else
    {
        dc.errorInfo.writeln;
        return;
    }

    auto c = new Compressor();
    ubyte[] jpegOutput;
    bool compressed = c.compress(pixels, jpegOutput, width, height, 90);
    if (compressed)
    {
        "image-out.jpg".write(jpegOutput);
    }
    else
    {
        c.errorInfo.writeln;
    }
}

During compilation dub will try to find libjpeg-turbo at the following locations (in addition to the default search locations for your linker):

  • On MacOS:
    • Homebrew path: /usr/local/opt/jpeg-turbo/lib
    • Installer path: /opt/libjpeg-turbo/lib
  • On Windows:
    • Installer paths: C:\libjpeg-turbo64\lib & C:\libjpeg-turbo\lib

Todo

  • Linux compatibility
  • Documentation
  • Compression to JPEG
  • Access to error information
  • Output of grayscale/B&W images

jpeg-turbod's People

Contributors

kyleingraham avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.