mirror of
https://github.com/marketideas/qasm.git
synced 2025-01-16 08:33:53 +00:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
|
/*
|
||
|
* CiderPress
|
||
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
||
|
* See the file LICENSE for distribution terms.
|
||
|
*/
|
||
|
/*
|
||
|
* Convert MacPaint files.
|
||
|
*/
|
||
|
#ifndef REFORMAT_MACPAINT_H
|
||
|
#define REFORMAT_MACPAINT_H
|
||
|
|
||
|
#include "ReformatBase.h"
|
||
|
|
||
|
/*
|
||
|
* Reformat a B&W MacPaint image.
|
||
|
*/
|
||
|
class ReformatMacPaint : public ReformatGraphics {
|
||
|
public:
|
||
|
ReformatMacPaint(void) {}
|
||
|
virtual ~ReformatMacPaint(void) {}
|
||
|
|
||
|
virtual void Examine(ReformatHolder* pHolder) override;
|
||
|
virtual int Process(const ReformatHolder* pHolder,
|
||
|
ReformatHolder::ReformatID id, ReformatHolder::ReformatPart part,
|
||
|
ReformatOutput* pOutput) override;
|
||
|
|
||
|
private:
|
||
|
MyDIBitmap* ConvertMacPaint(const uint8_t* srcBuf, long length);
|
||
|
|
||
|
enum {
|
||
|
kLeadingJunkCount = 512,
|
||
|
kOutputWidth = 576,
|
||
|
kOutputHeight = 720,
|
||
|
kNumColors = 2,
|
||
|
kMinSize = kLeadingJunkCount + 2*kOutputHeight,
|
||
|
// max size is 53072, not including MacBinary header
|
||
|
kMaxSize = 128 + kLeadingJunkCount + kOutputHeight*((kOutputWidth/8)+1),
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#endif /*REFORMAT_MACPAINT_H*/
|