vips-d

Wrapper library for VIPS


License
MIT
Install
dub fetch vips-d --version 0.1.4

Documentation

VIPS wrapper in D

This is a WIP wrapper around the VIPS library for the D Language.
Sample usage:

import vips.image;

void main(){
    auto image = VImage.fromFile("test.jpg");
    image.rotate(90).saveToFile("rotated.png");
}