⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 geooperator.h

📁 VS2005图像处理程序的源代码
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -