mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
19 lines
258 B
C++
19 lines
258 B
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "ImageData.h"
|
|
|
|
NS_BF_BEGIN;
|
|
|
|
class JPEGHuffmanTable;
|
|
class JPEGComponentInfo;
|
|
class JPEGDataStream;
|
|
|
|
class JPEGData : public ImageData
|
|
{
|
|
public:
|
|
bool ReadData();
|
|
void Compress(int quality);
|
|
};
|
|
|
|
NS_BF_END;
|