mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-23 11:33:58 +00:00
c78017b1d2
Moved comments and return types, switched to uint types, added "override" keyword.
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*/
|