搜索资源列表
ImageProcessingPlatform
- 基于MFC的图像处理平台以及基本功能的实现。(图像增强,文本提取等)-A imageprocessing platfrom based on the MFC and the implementation of its fundamental functions.
MyParticle
- 使用MFC编写的3D粒子编辑器。能选择多种粒子效果,修改Emitter,Affector等的参数,能保存为文本文件。
OpenGL单文档
- mfc开发的OpenGL单文本视图框架,方便进行二次开发!-mfc development of the OpenGL version View single framework to facilitate the development of secondary!
bmptext.zip
- MFC 24位bmp 图像显示,加入文本的处理。,mfc bmp image show,add text to the bmp file.
CreateTIN_MFC
- CreateTIN_MFC是使用MFC编写的一个构建不规则三角网(TIN)的程序。能通过鼠标刺点动态生成TIN,也能导入特定格式的文件进行构TIN,同时还能将构好的TIN导出成文本文件。具体的帮助见程序里面的chm格式的说明文档。-CreateTIN_MFC is prepared to use MFC to build a triangulated irregular network (TIN) procedure. Barbed point through dynamically gener
Sketcher
- 这是一个用MFC开发的绘制草图的程序,可以绘制直线、曲线、矩形、圆、文本。-This is a sketch developed with MFC program, you can draw lines, curves, rectangles, circles, text
MFCdraw
- 使用MFC编写一个画图小程序:交互式绘制图形(至少包括线、矩形和文本),绘制完成的图形能够正确地重现,绘制结果可以正确持久化(存储到文件、从文件中读出),线、矩形、文本的颜色(线色和填充色)、文本字体可调,能够通过鼠标点击选中图形,并进行属性的修改,修改的内容可包括:位置,大小,颜色,线型字体(对应文本图元而言)。适合熟练windows编程,使用MFC开发的学者。 -Drawing using a small program written in MFC: interactive rende
WaferPainter
- 在MFC平台下通过DEM文本文件生成二维和三维等高线,等高线的绘制利用OpenGL。-In the MFC platform DEM text files generated by two-dimensional and three-dimensional contour lines, contour drawing using OpenGL.
draw
- 一个简单的绘图实例,描述了一些简单的MFC绘制矩形,书写文本的方法-A simple drawing examples, describes some simple MFC draw rectangle method of writing the text
tu2
- MFC下的图像平滑源码,单文本,原图打包在程序里,正常运行,供大家参考吧,很有用的,一开就能用,我调了半天呢-In the foundation of scrambling image by tow-dimensional Arnold transform, the LSB( Least Significant Bit) embedding scheme is determined by the correlation between the pixels in the eight neig
test1_mfc
- mfc 程序 用于打开一个文本窗口 可以调用文件图像-mfc procedure to open a text window can be called document image
constructopengl
- 应用于开发opengl系统的文本框框架模式,非常方便使用,用MFC搭建.-Development of systems used in the text box opengl framework model, very easy to use, with MFC structure.
Geometry
- 用MFC实现画各种基本的图形,而且能够任意改变图形的大小,移动图形的位置,添加文本-With the MFC implementation of various basic graphic art, but also the size of any change in graphics, mobile graphics position, add text
colro_box
- 初学者使用的小程序,mfc的单文本模式下绘制一个斜置的彩色立方体-AppWizard has created this FogColorIndex application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application.
zhsy2
- 利用MFC开发的windows画图软件,实现画椭圆、矩形、文本等功能。-use MFC to realize windows draw
Draw2
- 自己在学习MFC的过程中实现的一个简易的画图工具,可以实现直线,曲线(最多250点构成),三角形,矩形,圆,椭圆的绘制以及文本的显示,具有颜色选择,缩放,移动,删除,前后台切换显示,线条粗细选择,自定义格式保存,自定义后缀名文件关联等功能-MFC in the learning process of their own to achieve a simple drawing tools, you can achieve straight lines, curves (up to 250 dots
Drawpad
- 基于MFC编写的小型绘图程序,可绘制直线,椭圆,矩形,支持颜色选择,可以保存到本地(按文本格式存储),将绘制图形视为一个对象,利用链表进行存储和读取,可以选择并执行删除(基于链表操作),希望对学习MFC和链表的朋友有用-MFC-based drawing program, can draw a straight line, oval, rectangular, color selection support, you can save to a local file and open the s
Cpp
- MapX基本操作的源代码,包括放大,缩小,图元的选择,基于MFC,多文本对话框-MapX basic operation of the source code
OpenGL_Line
- 基于MFC单文本对话框的opengl画线程序,里面画线程序只完善了网格线的,其余留着可自行添加-Opengl drawing a line program dialog based MFC single text, which draw lines program only perfect grid lines, the rest keep their own Add
CDC
- 在Windows平台上,应用程序的图形设备接口(graphics device interface,GDI)被抽象为设备上下文(Device Context,DC)。 在微软基类库MFC中,CDC类是定义设备上下文对象的基类,所有绘图函数都在CDC基类中定义。当需要输出文字或图形时,就需要调用CDC类的成员函数,这些成员函数具备输出文本、绘制图形的功能。 本节讲解的例程全部在TestView.cpp文件的 void CTestView::OnDraw(CDC* pDC)函数中实现。