Assignments
Assignments
jpeg.h
Go to the documentation of this file.
1#ifndef JPEG_INCLUDED
2#define JPEG_INCLUDED
3
4#include "image.h"
5
6namespace Image
7{
9 void JPEGReadImage( std::string fileName , Image32& img );
11 void JPEGReadImage( FILE *fp , Image32& img );
12
14 void JPEGWriteImage( const Image32& img , std::string , int quality=100 );
16 void JPEGWriteImage( const Image32& img , FILE *fp , int quality );
17}
18#endif // JPEG_INCLUDED
Definition: bmp.cpp:142
void JPEGReadImage(std::string fileName, Image32 &img)
Definition: jpeg.cpp:39
void JPEGWriteImage(const Image32 &img, std::string fileName, int quality)
Definition: jpeg.cpp:47