mirror of
https://github.com/fadden/ciderpress.git
synced 2024-10-31 16:04:54 +00:00
c78017b1d2
Moved comments and return types, switched to uint types, added "override" keyword.
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Reformat hi-res images.
|
|
*/
|
|
#ifndef REFORMAT_HIRES_H
|
|
#define REFORMAT_HIRES_H
|
|
|
|
#include "ReformatBase.h"
|
|
|
|
/*
|
|
* Reformat a HiRes graphic into a bitmap.
|
|
*/
|
|
class ReformatHiRes : public ReformatGraphics {
|
|
public:
|
|
ReformatHiRes(void) { fBlackWhite = false; }
|
|
virtual ~ReformatHiRes(void) {}
|
|
|
|
virtual void Examine(ReformatHolder* pHolder) override;
|
|
virtual int Process(const ReformatHolder* pHolder,
|
|
ReformatHolder::ReformatID id, ReformatHolder::ReformatPart part,
|
|
ReformatOutput* pOutput) override;
|
|
|
|
enum {
|
|
kPixelsPerLine = 280,
|
|
kNumLines = 192,
|
|
|
|
kOutputWidth = 560,
|
|
kOutputHeight = 384,
|
|
kExpectedSize = 8192,
|
|
};
|
|
|
|
|
|
static void InitLineOffset(int* pOffsetBuf);
|
|
MyDIBitmap* HiResScreenToBitmap(const uint8_t* buf);
|
|
|
|
int fLineOffset[kNumLines];
|
|
bool fBlackWhite;
|
|
};
|
|
|
|
#endif /*REFORMAT_HIRES_H*/
|