图像镜像

三个函数,垂直镜像、水平镜像、自定义镜像。


void CDIGTLSView::OnMirrorVertical()    //垂直镜像
//程序编制:李立宗  lilizong@gmail.com
// 2012-8-6
	{
		if(myImage1.IsNull())
			OnOpenResourceFile();
		if(myImage2.IsNull()){
			//myImage2.Destroy();
			myImage2.Create(myImage1.GetWidth(),myImage1.GetHeight(),24,0);
		}
		COLORREF pixel; 
		int maxY = myImage1.GetHeight();
		int maxX=myImage1.GetWidth();
		int r,g,b,avg; 
		double c;
		byte* pRealData;
		byte* pRealData2;
		pRealData=(byte*)myImage1.GetBits();
		pRealData2=(byte*)myImage2.GetBits();
		int pit=myImage1.GetPitch();
		int pit2=myImage2.GetPitch();
		//需要注意,pit和pit2的值并不一样,所以如果使用一个值,会导致不同的结果出现
		//CString str;
		//str.Format(TEXT("%d"),pit2);
		//MessageBox(str);
		//str.Format(TEXT("%d"),pit2);
		//MessageBox(str);
		int bitCount=myImage1.GetBPP()/8;
		int bitCount2=myImage2.GetBPP()/8;
		//CString str;
		//str.Format(TEXT("%d"),bitCount);
		//MessageBox(str);
		//str.Format(TEXT("%d"),bitCount2);
		//MessageBox(str);
		int newValue;
		int tempR,tempG,tempB;
		int key1,key2;  //用来控制方向
		//srand((unsigned)time(NULL)); 
		//key1=rand()%100;
		//key2=rand()%100;
		//if(key1>50)
		//	key1=-1;
		//else
		//	key1=1;
		//if(key2<50)
		//	key2=1;
		//else
		//	key2=-1;
		//int xTrans=key1*rand()%(int)(maxX/1.5)+1;
		//int yTrans=key2*rand()%(int)(maxY/1.5)+1;
		//说明:将生产的图像作为24位图处理。
		for (int y=0; y<maxY; y++) {
			for (int x=0; x<maxX; x++) {
				if((maxY-1-y>=0)&&(maxY-1-y<=maxY))
				{	tempR=(int)(int)(*(pRealData+pit*(maxY-1-y)+x*bitCount));
				if(bitCount==1)
				{tempG=tempR;
				tempB=tempR;}
				else
				{

					tempG=(int)(int)(*(pRealData+pit*(maxY-1-y)+x*bitCount+1));
					tempB=(int)(int)(*(pRealData+pit*(maxY-1-y)+x*bitCount+2));
				}
				}
				else
				{
					tempR=255;
					tempG=0;
					tempB=0;
				}

				*(pRealData2+pit2*y+x*bitCount2)=tempR;
				*(pRealData2+pit2*y+x*bitCount2+1)=tempG;
				*(pRealData2+pit2*y+x*bitCount2+2)=tempB;
			}

		}
		Invalidate();
	}


	void CDIGTLSView::OnMirrorHorizental()    //水平镜像
	{
		if(myImage1.IsNull())
			OnOpenResourceFile();
		if(myImage2.IsNull()){
			//myImage2.Destroy();
			myImage2.Create(myImage1.GetWidth(),myImage1.GetHeight(),24,0);
		}
		COLORREF pixel; 
		int maxY = myImage1.GetHeight();
		int maxX=myImage1.GetWidth();
		int r,g,b,avg; 
		double c;
		byte* pRealData;
		byte* pRealData2;
		pRealData=(byte*)myImage1.GetBits();
		pRealData2=(byte*)myImage2.GetBits();
		int pit=myImage1.GetPitch();
		int pit2=myImage2.GetPitch();
		//需要注意,pit和pit2的值并不一样,所以如果使用一个值,会导致不同的结果出现
		//CString str;
		//str.Format(TEXT("%d"),pit2);
		//MessageBox(str);
		//str.Format(TEXT("%d"),pit2);
		//MessageBox(str);
		int bitCount=myImage1.GetBPP()/8;
		int bitCount2=myImage2.GetBPP()/8;
		//CString str;
		//str.Format(TEXT("%d"),bitCount);
		//MessageBox(str);
		//str.Format(TEXT("%d"),bitCount2);
		//MessageBox(str);
		int newValue;
		int tempR,tempG,tempB;
		int key1,key2;  //用来控制方向
		//srand((unsigned)time(NULL)); 
		//key1=rand()%100;
		//key2=rand()%100;
		//if(key1>50)
		//	key1=-1;
		//else
		//	key1=1;
		//if(key2<50)
		//	key2=1;
		//else
		//	key2=-1;
		//int xTrans=key1*rand()%(int)(maxX/1.5)+1;
		//int yTrans=key2*rand()%(int)(maxY/1.5)+1;
		//说明:将生产的图像作为24位图处理。
		for (int y=0; y<maxY; y++) {
			for (int x=0; x<maxX; x++) {
				if((maxX-1-x>=0)&&(maxX-1-x<=maxX))
				{	tempR=(int)(int)(*(pRealData+pit*y+(maxX-1-x)*bitCount));
				if(bitCount==1)
				{tempG=tempR;
				tempB=tempR;}
				else
				{

					tempG=(int)(int)(*(pRealData+pit*y+(maxX-1-x)*bitCount+1));
					tempB=(int)(int)(*(pRealData+pit*y+(maxX-1-x)*bitCount+2));
				}
				}
				else
				{
					tempR=255;
					tempG=0;
					tempB=0;
				}

				*(pRealData2+pit2*y+x*bitCount2)=tempR;
				*(pRealData2+pit2*y+x*bitCount2+1)=tempG;
				*(pRealData2+pit2*y+x*bitCount2+2)=tempB;
			}

		}
		Invalidate();
	}


	void CDIGTLSView::OnMirrorCustome()    //自定义水平、垂直镜像
	{
		if(myImage1.IsNull())
			OnOpenResourceFile();
		CMyMirror myDlg;
		int myAngle;
		if(myDlg.DoModal () == IDOK)	
		{	
			myAngle=myDlg.myMirror;
			//			CString str;
			//str.Format(TEXT("%d"),myAngle);
			//MessageBox(str);
			if(myAngle==0)
				OnMirrorHorizental();
			else

				OnMirrorVertical();
		}
		else
		{
			myImage2.Destroy();
			Invalidate();
		}
	}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

superdont

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值