Skip to content

Instantly share code, notes, and snippets.

@dejadejade
dejadejade / jp2.cc
Created May 14, 2020 02:58
OpenJpeg wrapper
#include <openjpeg-2.3/openjpeg.h>
#include <stdio.h>
#include <vector>
#include <string>
#include <cstring>
//credits: https://blog.csdn.net/10km/article/details/50607008
typedef unsigned char uint8_t;
@dejadejade
dejadejade / img2pdf.go
Created April 26, 2020 20:38
images to pdf
package main
import (
"archive/zip"
"bytes"
"flag"
"fmt"
"image"
"image/color"
_ "image/jpeg"