geooperator.h
来自「VS2005图像处理程序的源代码」· C头文件 代码 · 共 23 行
H
23 行
#pragma once
bool MoveTransNormal(BYTE* pixel, BYTE*& tempPixel, int width, int height,
int xx, int yy);
void MoveTransSize(BYTE* pixel, BYTE*& tempPixel, int width, int height,
int xx, int yy, UINT& outWidth, UINT& outHeight);
void VMirrorTrans(BYTE* pixel, BYTE*& tempPixel, int width, int height);
void HMirrorTrans(BYTE* pixel, BYTE*& tempPixel, int width, int height);
void ZoomNormal(BYTE* pixel, BYTE*& tempPixel, int width, int height,
UINT& outWidth, UINT& outHeight, double fx, double fy);
void ZoomInterpolation(BYTE* pixel, BYTE*& tempPixel, int width, int height,
UINT& outWidth, UINT& outHeight, double fx, double fy);
void RotateNormal(BYTE* pixel, BYTE*& tempPixel, int width, int height,
UINT& outWidth, UINT& outHeight, double angle);
void RotateInterpolation(BYTE* pixel, BYTE*& tempPixel, int width, int height,
UINT& outWidth, UINT& outHeight, double angle);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?