jpeg-turbod 0.2.0
A D wrapper for libjpeg-turbo.
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
jpeg-turbod
A D wrapper for libjpeg-turbo.
Currently working on MacOS and Windows. Linux compatibility pending.
Requirements
- libjpeg-turbo
- Installation:
- MacOS (via Homebrew):
brew install jpeg-turbo
- MacOS/Windows (via official installer): https://libjpeg-turbo.org/Documentation/OfficialBinaries
- MacOS (via Homebrew):
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
- Registered by Kyle Ingraham
- 0.2.0 released 3 years ago
- kyleingraham/jpeg-turbod
- MIT
- Copyright © 2021, Kyle Ingraham
- Authors:
- Dependencies:
- none
- Versions:
-
0.2.0 2021-Mar-18 0.1.4 2021-Jan-18 0.1.3 2021-Jan-18 0.1.2 2021-Jan-18 0.1.1 2021-Jan-16 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
19 downloads total
-
- Score:
- 0.3
- Short URL:
- jpeg-turbod.dub.pm