Skip to content

Instantly share code, notes, and snippets.

View lucasb-eyer's full-sized avatar
🤔
{D,R}L Research @ Google Brain Zürich

Lucas Beyer lucasb-eyer

🤔
{D,R}L Research @ Google Brain Zürich
View GitHub Profile
@lucasb-eyer
lucasb-eyer / test.cpp
Last active August 29, 2015 14:05
Testing JPG -> MagickWand -> raw buffer -> MagickWand -> JPG
#include <wand/magick_wand.h>
#include <iostream>
#include <vector>
using namespace std;
int main(int argc, char* argv[])
{
MagickWand *mw_in = NewMagickWand();
MagickWand *mw_out = NewMagickWand();