Code Monkey home page Code Monkey logo

jpec's Introduction

jpec - a JPEG encoder in C

Overview

jpec is a minimalistic JPEG encoder written in C with a focus on simplicity.

It is both portable (tested on x86 and ARM) and lightweight (around 600 LOC).

The library has no external dependencies.

It is a perfect candidate if you have some embedded C code you need to extend with a JPEG encoder the easy way.

Features

The library allows you to write JPEG compressed images from input image data on memory. No more, no less.

More precisely:

  • it works in grayscale only (monochrome JPEG file): there is no support for color so far,
  • it produces baseline, DCT-based (SOF0), JFIF 1.01 (APP0) JPEG-s,
  • it supports 8x8 blocks only,
  • it includes default quantization and Huffman tables that are not customizable at runtime.

Build

Just type:

make

This produces:

  • libjpec.a: the static library,
  • jpec: a simple command-line tool used to test the library (see main.c)

NOTE the command-line tool depends on OpenCV 2 HighGUI module to easily read any kind of input image. You need to have OpenCV development libraries installed on your machine to use it (e.g. brew install opencv on Mac OS X with Homebrew).

Usage

If you want to embed the library into your own C code you are free to create the static library file, and include jpec.h main header, or to copy-paste the whole code into your project.

Then, encoding a raw image is a matter of a few lines of code:

/* Create a JPEG encoder provided image data */
jpec_enc_t *e = jpec_enc_new(img, w, h);

/* Compress */
int len;
const uint8_t *jpeg = jpec_enc_run(e, &len);

/* Do something with the JPEG blob (e.g. save into a file, etc) */

/* Release the encoder */
jpec_enc_del(e);

Authors

Maxime Brénon & Cédric Deltheil.

Copyright

Copyright (c) 2012-2016 Moodstocks SAS

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.