You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
334 B
C

#ifndef IMAGE_JPEG_H
#define IMAGE_JPEG_H
#include "image.h"
extern structImageProcess ImageProcess;
const char ImageHeaderJPEG[] = "\xFF\xD8\xFF\xE0\x00\x10\x4A\x46\x49\x46\x00";
void setupImageJPEG();
void jpegOpenFramebuffer();
void jpegWriteFramebuffer(int offset, uint8_t bitmap[], int c);
void jpegFlushFramebuffer();
#endif