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.
36 lines
989 B
C++
36 lines
989 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Convert Print Shop graphics.
|
|
*/
|
|
#ifndef REFORMAT_PRINTSHOP_H
|
|
#define REFORMAT_PRINTSHOP_H
|
|
|
|
#include "ReformatBase.h"
|
|
|
|
/*
|
|
* Reformat Print Shop clip art. There are actually two kinds, "classic"
|
|
* (88x52 B&W) and "GS" (88x52 3-bit color). This handles both.
|
|
*/
|
|
class ReformatPrintShop : public ReformatGraphics {
|
|
public:
|
|
ReformatPrintShop(void) {}
|
|
virtual ~ReformatPrintShop(void) {}
|
|
|
|
virtual void Examine(ReformatHolder* pHolder) override;
|
|
virtual int Process(const ReformatHolder* pHolder,
|
|
ReformatHolder::ReformatID id, ReformatHolder::ReformatPart part,
|
|
ReformatOutput* pOutput) override;
|
|
|
|
private:
|
|
enum { kWidth=88, kHeight=52 };
|
|
|
|
MyDIBitmap* ConvertBW(const uint8_t* srcBuf);
|
|
MyDIBitmap* ConvertColor(const uint8_t* srcBuf);
|
|
};
|
|
|
|
#endif /*REFORMAT_PRINTSHOP_H*/
|