Skip to content

Instantly share code, notes, and snippets.

View ItsCOMMANDer's full-sized avatar

ItsCOMMANDer

  • no
  • 09:03 (UTC +01:00)
View GitHub Profile
@ItsCOMMANDer
ItsCOMMANDer / jpg-thing.c
Created July 19, 2024 09:13
This is a little tool i made to play around with images in the jpeg format.
// Compile with "gcc -o main main.c -ljpeg -lm"
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <math.h>
#include <stdbool.h>
#include <string.h>