📄 scale.h
字号:
/*
* scale.h
*
* The RGB Scale for Symbian Project
*
* Copyright (c) 2005-2008 for Cyansoft Studio (www.cyansoft.com.cn).
* All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* $Cyansoft$
*
*/
#ifndef _SCALE_INC_
#define _SCALE_INC_
#include <e32base.h>
class CScale : public CBase
{
public:
static CScale* NewL( TUint32 aSrcW, TUint32 aSrcH, TUint32 aDstW, TUint32 aDstH, TUint32 aBytesPixel );
static CScale* NewLC( TUint32 aSrcW, TUint32 aSrcH, TUint32 aDstW, TUint32 aDstH, TUint32 aBytesPixel );
virtual ~CScale();
void ConstructL( TUint32 aSrcW, TUint32 aSrcH, TUint32 aDstW, TUint32 aDstH, TUint32 aBytesPixel );
void ConvertL( const TUint8* aSrc, const TUint8* aDst );
};
#endif /* _SCALE_INC_ */
/* End of file */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -