




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、用VC6.0建一个对话框窗体,命名为Chaos在ChaosDlg.cpp文件下:BOOL CChaosDlg:OnInitDialog()CDialog:OnInitDialog();MoveWindow(0,0,1024,768,true);/ Add "About." menu item to system menu./ IDM_ABOUTBOX must be in the system command range.ASSERT(IDM_ABOUTBOX & 0xFFF0) = IDM_ABOUTBOX);ASSERT(IDM_ABOUTBOX < 0x
2、F000);CMenu* pSysMenu = GetSystemMenu(FALSE);if (pSysMenu != NULL)CString strAboutMenu;strAboutMenu.LoadString(IDS_ABOUTBOX);if (!strAboutMenu.IsEmpty()pSysMenu->AppendMenu(MF_SEPARATOR);pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);/ Set the icon for this dialog. The framework d
3、oes this automatically/ when the application's main window is not a dialogSetIcon(m_hIcon, TRUE);/ Set big iconSetIcon(m_hIcon, FALSE);/ Set small icon/角度的分界线tan_1=tan(60*pi/180.0); tan_2=tan(120*pi/180.0); tan_3=tan(240*pi/180.0); tan_4=tan(300*pi/180.0);return TRUE; / return TRUE unless you se
4、t the focus to a controlvoid CChaosDlg:OnSysCommand(UINT nID, LPARAM lParam)if (nID & 0xFFF0) = IDM_ABOUTBOX)CAboutDlg dlgAbout;dlgAbout.DoModal();elseCDialog:OnSysCommand(nID, lParam);/ If you add a minimize button to your dialog, you will need the code below/ to draw the icon. For MFC applicat
5、ions using the document/view model,/ this is automatically done for you by the framework.void CChaosDlg:OnPaint() if (IsIconic()CPaintDC dc(this); / device context for paintingSendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);/ Center icon in client rectangleint cxIcon = GetSystemMetrics(S
6、M_CXICON);int cyIcon = GetSystemMetrics(SM_CYICON);CRect rect;GetClientRect(&rect);int x = (rect.Width() - cxIcon + 1) / 2;int y = (rect.Height() - cyIcon + 1) / 2;/ Draw the icondc.DrawIcon(x, y, m_hIcon);elseCDialog:OnPaint();/*将作图区域底色设为白色*/CRect rec;rec.left=0;rec.top=0;rec.right=767;rec.bott
7、om=767;CDC *dc;dc=this->GetDC();CBrush hbr;hbr.CreateSolidBrush(RGB(255,255,255);dc->FillRect(&rec,&hbr);/ The system calls this to obtain the cursor to display while the user drags/ the minimized window.HCURSOR CChaosDlg:OnQueryDragIcon()return (HCURSOR) m_hIcon;void CChaosDlg:OnOK()
8、/ TODO: Add extra validation hereUpdateData(TRUE);CDC *dc;dc=this->GetDC();double x0,y0,x1,y1,dx,dy;int col,row,color;/绘图范围是-2,2/dx=dy=4.0/767.0;for(col=0;col<=767;col+)for(row=0;row<=767;row+) x0=(double)col*dx-2;y0=(double)row*dy-2;color=judge_color_point(x0,y0);dc->SetPixel(col,767-ro
9、w,colorlistcolor);dc->MoveTo(20-1,20-1);dc->LineTo(747+1,20-1);dc->LineTo(747+1,747+1);dc->LineTo(20-1,747+1);dc->LineTo(20-1,20-1);/画出图形/for(col=20;col<=747;col+)for(row=20;row<=747;row+)x0=(double)(col*dx-2);/-1.0;y0=(double)(row*dy-2);/-1.0;x1=itearate_fre(x0,y0,this->m_ed
10、it1);y1=itearate_fim(x0,y0,this->m_edit1);color=judge_color_point(x1,y1);dc->SetPixel(col,767-row,colorlistcolor);x0=x1;y0=y1;UpdateData(FALSE);int CChaosDlg:judge_color_point(double x, double y)int z1;double division;if(x>0&&y>0)division=y/x;if(division<=tan_1)z1=1;elsez1=2;i
11、f(x<0&&y>=0)division=y/x;if(division<=tan_2)z1=2;elsez1=3;if(x<0&&y<0)division=y/x;if(division<=tan_3)z1=4;elsez1=5;if(x>0&&y<=0)division=y/x; if(division<=tan_4)z1=5;elsez1=0;/x坐标轴的判断if(x=0&&y>0)z1=2;if(x=0&&y<=0)z1=5;return(z
12、1);double CChaosDlg:fre(double x, double y)double z;z=2.5*x*(1-x*x-y*y)+0.9*(x*x-y*y);return(z);double CChaosDlg:fim(double x, double y)double z;z=-1.8*x*y+2.5*y*(1-x*x-y*y);return(z);double CChaosDlg:itearate_fre(double x, double y, int n)int i;double z;double xnew,ynew;for(i=0;i<n;i+) xnew=fre(
13、x,y);ynew=fim(x,y);x=xnew;y=ynew;z=x;return(z);double CChaosDlg:itearate_fim(double x, double y, int n)int i;double z;double xnew,ynew;for(i=0;i<n;i+) xnew=fre(x,y);ynew=fim(x,y);x=xnew;y=ynew;z=y;return(z);/存图void CChaosDlg:OnSave() int x1,x2,y1,y2;int i,j,flag;BYTE r,g,b;COLORREF clr;CClientDC
14、dc(this);flag = 0;for(i = 0;i < 768;i+)for(j = 0;j < 768;j+)clr = dc.GetPixel(i,j);r = GetRValue(clr);g = GetGValue(clr);b = GetBValue(clr);if(r != 255 | g != 255 | b != 255)flag = 1;x1 = i;break;if(flag)break;flag = 0;for(i = 767;i >=0;i-)for(j = 767;j >=0;j-)clr = dc.GetPixel(i, j);r =
15、 GetRValue(clr);g = GetGValue(clr);b = GetBValue(clr);if(r != 255 | g != 255 | b != 255)flag = 1;x2 = i;break;if(flag)break;flag = 0;for(j = 0;j < 768;j+)for(i = x1;i <= x2;i+)clr = dc.GetPixel(i, j);r = GetRValue(clr);g = GetGValue(clr);b = GetBValue(clr);if(r != 255 | g != 255 | b != 255)fla
16、g = 1;y1 = j;break;if(flag)break;flag = 0;for(j = 767;j >=0;j-)for(i = x2;i >=x1;i-)clr = dc.GetPixel(i, j);r = GetRValue(clr);g = GetGValue(clr);b = GetBValue(clr);if(r != 255 | g != 255 | b != 255)flag = 1;y2 = j;break;if(flag)break;/保存图片CRectrect;rect.SetRect(x1,y1,x2,y2);/CClientDCdc(this)
17、; CDC memDC;/CRectrect;memDC.CreateCompatibleDC(&dc);CBitmap bm;int Width = 768;int Height = 768;bm.CreateCompatibleBitmap(&dc, Width, Height);CBitmap* pOld = memDC.SelectObject(&bm);memDC.BitBlt(0, 0, Width, Height, &dc, 0, 0, SRCCOPY);memDC.SelectObject(pOld);BITMAP btm;bm.GetBitma
18、p(&btm);DWORD size = btm.bmWidthBytes * btm.bmHeight;LPSTR lpData = (LPSTR)GlobalAllocPtr(GPTR, size);BITMAPFILEHEADER bfh;/BITMAPINFOHEADER bih;bih.biBitCount = btm.bmBitsPixel;bih.biClrImportant = 0;bih.biClrUsed = 0;bih.biCompression = 0;bih.biHeight = btm.bmHeight;bih.biPlanes = 1;bih.biSize
19、 = sizeof(BITMAPINFOHEADER);bih.biSizeImage = size;bih.biWidth = btm.bmWidth;bih.biXPelsPerMeter = 0;bih.biYPelsPerMeter = 0;GetDIBits(dc,bm,0,bih.biHeight,lpData,(BITMAPINFO*)&bih,DIB_RGB_COLORS);/bm.GetBitmapBits(size,lpData);/此函数在处理5-5-5模式的16位色下会出现颜色混乱bfh.bfReserved1 = bfh.bfReserved2 = 0;bfh
20、.bfType = (WORD)('M'<< 8)|'B');bfh.bfSize = 54 + size;bfh.bfOffBits = 54;CFileDialog dlg(false,_T("BMP"),_T("*.bmp"),OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,_T("*.bmp|*.bmp|*.*|*.*|");if (dlg.DoModal()!=IDOK)return;CFile bf;CString ss=dlg.GetPathNam
21、e();if(bf.Open(ss, CFile:modeCreate | CFile:modeWrite)bf.WriteHuge(&bfh, sizeof(BITMAPFILEHEADER);bf.WriteHuge(&bih, sizeof(BITMAPINFOHEADER);bf.WriteHuge(lpData, size);bf.Close();AfxMessageBox("保存成功");GlobalFreePtr(lpData);void CChaosDlg:OnButton1() / TODO: Add your control notification handler code hereCRect rec;rec.left=0;rec.top=0;rec.right=768;rec.bottom=767;CDC *dc;dc=this->GetDC();CBrush hbr;hbr.CreateSolidBrush(RGB(255,255,255);dc->FillRect(&rec,&hbr);/double x0=-0.5,y0=0.5,x1,y1,dx,dy;dx=dy=4.0/767
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 二零二五年度专业保洁公司保洁用品及清洁剂采购合同
- 二零二五年度建筑工程资料审核与承包服务合同
- 2025版货车租车及驾驶员职业规划与晋升服务合同
- 2025版旅游产业人民币担保书
- 二零二五年度电商园区品牌推广与宣传服务合同
- 2025版楼梯口拆除改造与社区安全防范体系建设合同
- 二零二五版跨境电子商务支付安全协议及信用保障合同
- 2025至2030年中国智能服饰行业市场全景评估及发展战略规划报告
- 早期股骨头坏死课件
- 二零二五年度电梯销售与售后服务合同范本
- 2025年事业单位笔试-云南-云南药剂学(医疗招聘)历年参考题库含答案解析(5卷套题【单选100题】)
- 2025年度铝合金门购销及节能技术合同
- 2024届国家卫健委临床药师培训学员(抗感染专业)理论考核试题
- 【基层法工】基层法律服务工作者测试题附答案
- 浙江浙政钉管理办法
- 宁夏公休假管理办法
- 心源性休克的护理个案
- 2024年10月19日北京市下半年事业单位七区联考《公共基本能力测验》笔试试题(海淀-房山-西城-通州-丰台-怀柔)真题及答案
- 2025年高考真题-政治(湖南卷) 含答案
- 2025年网络安全知识竞赛考试题库(100题)(含答案)
- 《中国动态血压监测基层应用指南(2024年)》解读 2
评论
0/150
提交评论