当前位置:首页 » 操作系统 » 画图程序源码

画图程序源码

发布时间: 2022-07-30 14:00:34

‘壹’ 急求用MFC编写的画图板源代码

以下这个源代码就是用MFC写的,可以模拟Windows的画图程序。
以后可以多去codeproject这个开源网站找找。
http://www.codeproject.com/Articles/8494/DrawTools

‘贰’ 求完整的matlab画图的源代码 越多越好~~~

clc,clear
all
n=1300:200:2100;%%%%给n赋值
Me=[130,136 140 144 140];%扭矩Me
Ne=[17.7 21.36
24.92 28.65 30.79];%功率
ge=[247
245 240 248 242];%燃油消耗率
tr=[463
460 500 518 526];%排气温度
%% 画随转速n变化的曲线
subplot(421)
h1=plot(n,tr,n,tr,'+');
set(gca,'XLim',[1200
2200]);%X轴的数据显示范围
set(gca,'XTickLabel',[1300:200:2300]);%给坐标加标签
ylabel('tr\℃'); ylim([460,530])
set(h1,'LineWidth',2)
subplot(423)
h3=plot(n,ge,n,ge,'+');
set(gca,'XLim',[1200
2200]);%X轴的数据显示范围
set(gca,'XTickLabel',[1300:200:2300]);%给坐标加标签
set(h3,'LineWidth',2)
subplot(425)
h5=plot(n,Ne,n,Ne,'+');
set(gca,'XLim',[1200
2200]);%X轴的数据显示范围
set(gca,'XTickLabel',[1300:200:2300]);%给坐标加标签
set(h5,'LineWidth',2)
;ylim([15,32]);
subplot(427)
h7=plot(n,Me,n,Me,'+');
set(gca,'XLim',[1200
2200]);%X轴的数据显示范围
set(gca,'XTickLabel',[1300:200:2300]);%给坐标加标签
set(h7,'LineWidth',2)
%% 画随功率Ne变化的曲线
subplot(422)
h2=plot(Ne,tr,Ne,tr,'+');
%
set(gca,'XLim',[15 35]);%X轴的数据显示范围
%
set(gca,'XTickLabel',[15:5:35]);%给坐标加标签
ylabel('tr\℃'); ylim([460,530])
set(h2,'LineWidth',2)
subplot(424)
h4=plot(Ne,ge,Ne,ge,'+');
set(h4,'LineWidth',2)
subplot(426)
h6=plot(Ne,n,Ne,n,'+');
set(h6,'LineWidth',2)
subplot(428)
h8=plot(Ne,Me,Ne,Me,'+');
set(h8,'LineWidth',2)

‘叁’ 求java版画图程序的源代码

找到了,很久以前写的一个简单画图,呵呵~当时要求用AWT写,很难受。

package net.miqiang.gui;

import java.awt.BasicStroke;
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import java.awt.Label;
import java.awt.Panel;
import java.awt.RenderingHints;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.BufferedImage;

/**
* 简单画图板程序
* 好久没用 AWT 了,写起来真别扭,如果用 swing 会很舒服,有空再改写吧。
*
* @author 米强
*
*/
public class TestMain extends Frame {
// 画板
private Palette palette = null;

// 显示当前颜色的面板
private Panel nonceColor = null;

// 画笔粗细
private Label drawWidth = null;

// 画笔端点的装饰
private Label drawCap = null;

// 选取颜色按钮的监听事件类
private ButtonColorAction buttonColorAction = null;

// 鼠标进入按钮后光标样式的监听事件类
private ButtonCursor buttonCursor = null;

// 画笔样式的监听事件
private ButtonStrokeAction buttonStrokeAction = null;

/**
* 构造方法
*
*/
public TestMain() {
// 设置标题栏文字
super("简易画图板");

// 构造一个画图板
palette = new Palette();

Panel pane = new Panel(new GridLayout(2, 1));

// 画笔颜色选择器
Panel paneColor = new Panel(new GridLayout(1, 13));

// 12 个颜色选择按钮
Button [] buttonColor = new Button[12];
Color [] color = {Color.black, Color.blue, Color.cyan, Color.darkGray, Color.gray, Color.green, Color.magenta, Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
// 显示当前颜色的面板
nonceColor = new Panel();
nonceColor.setBackground(Color.black);
paneColor.add(nonceColor);
buttonColorAction = new ButtonColorAction();
buttonCursor = new ButtonCursor();
for(int i = 0; i < buttonColor.length; i++){
buttonColor[i] = new Button();
buttonColor[i].setBackground(color[i]);
buttonColor[i].addActionListener(buttonColorAction);
buttonColor[i].addMouseListener(buttonCursor);
paneColor.add(buttonColor[i]);
}
pane.add(paneColor);

// 画笔颜色选择器
Panel paneStroke = new Panel(new GridLayout(1, 13));

// 控制画笔样式
buttonStrokeAction = new ButtonStrokeAction();
Button [] buttonStroke = new Button[11];
buttonStroke[0] = new Button("1");
buttonStroke[1] = new Button("3");
buttonStroke[2] = new Button("5");
buttonStroke[3] = new Button("7");
buttonStroke[4] = new Button("9");
buttonStroke[5] = new Button("11");
buttonStroke[6] = new Button("13");
buttonStroke[7] = new Button("15");
buttonStroke[8] = new Button("17");
buttonStroke[9] = new Button("■");
buttonStroke[10] = new Button("●");
drawWidth = new Label("3", Label.CENTER);
drawCap = new Label("●", Label.CENTER);
drawWidth.setBackground(Color.lightGray);
drawCap.setBackground(Color.lightGray);
paneStroke.add(drawWidth);
for(int i = 0; i < buttonStroke.length; i++){
paneStroke.add(buttonStroke[i]);
buttonStroke[i].addMouseListener(buttonCursor);
buttonStroke[i].addActionListener(buttonStrokeAction);
if(i <= 8){
buttonStroke[i].setName("width");
}else{
buttonStroke[i].setName("cap");
}
if(i == 8){
paneStroke.add(drawCap);
}
}
pane.add(paneStroke);

// 将画笔颜色选择器添加到窗体中
this.add(pane, BorderLayout.NORTH);

// 将画图板添加到窗体中
this.add(palette);

// 添加窗口监听,点击关闭按钮时退出程序
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});

// 设置窗体 ICON 图标
this.setIconImage(Toolkit.getDefaultToolkit().createImage("images/palette.png"));

// 设置窗口的大小
this.setSize(new Dimension(400, 430));
// 设置窗口位置,处于屏幕正中央
this.setLocationRelativeTo(null);
// 显示窗口
this.setVisible(true);
}

/**
* 程序入口
*
* @param args
* 字符串数组参数
*/
public static void main(String[] args) {
new TestMain();
}

/**
* 选取颜色按钮的监听事件类
* @author 米强
*
*/
class ButtonColorAction implements ActionListener {

public void actionPerformed(ActionEvent e) {
Color color_temp = ((Button)e.getSource()).getBackground();
nonceColor.setBackground(color_temp);
palette.setColor(color_temp);
}

}

/**
* 鼠标进入按钮变换光标样式监听事件类
* @author 米强
*
*/
class ButtonCursor extends MouseAdapter {

public void mouseEntered(MouseEvent e) {
((Button)e.getSource()).setCursor(new Cursor(Cursor.HAND_CURSOR));
}

public void mouseExited(MouseEvent e) {
((Button)e.getSource()).setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

}

/**
* 设置画笔的监听事件类
* @author 米强
*
*/
class ButtonStrokeAction implements ActionListener {

public void actionPerformed(ActionEvent e) {
Button button_temp = (Button) e.getSource();
String name = button_temp.getName();
if(name.equalsIgnoreCase("width")){
drawWidth.setText(button_temp.getLabel());
palette.setStroke(Float.parseFloat(button_temp.getLabel()));
}else if(name.equalsIgnoreCase("cap")){
drawCap.setText(button_temp.getLabel());
if(button_temp.getLabel().equals("■")){
palette.setStroke(BasicStroke.CAP_SQUARE);
}else if(button_temp.getLabel().equals("●")){
palette.setStroke(BasicStroke.CAP_ROUND);
}
}
}

}

}

/**
* 画板类
*
* @author 米强
*
*/
class Palette extends Panel implements MouseListener, MouseMotionListener {
// 鼠标 X 坐标的位置
private int mouseX = 0;

// 上一次 X 坐标位置
private int oldMouseX = 0;

// 鼠标 Y 坐标的位置
private int mouseY = 0;

// 上一次 Y 坐标位置
private int oldMouseY = 0;

// 画图颜色
private Color color = null;

// 画笔样式
private BasicStroke stroke = null;

// 缓存图形
private BufferedImage image = null;

/**
* 构造一个画板类
*
*/
public Palette() {
this.addMouseListener(this);
this.addMouseMotionListener(this);
// 默认黑色画笔
color = new Color(0, 0, 0);
// 设置默认画笔样式
stroke = new BasicStroke(3.0f, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND);
// 建立 1280 * 1024 的 RGB 缓存图象
image = new BufferedImage(1280, 1024, BufferedImage.TYPE_INT_RGB);
// 设置颜色
image.getGraphics().setColor(Color.white);
// 画背景
image.getGraphics().fillRect(0, 0, 1280, 1024);
}

/**
* 重写 paint 绘图方法
*/
public void paint(Graphics g) {
super.paint(g);

// 转换为 Graphics2D
Graphics2D g2d = (Graphics2D) g;

// 获取缓存图形 Graphics2D
Graphics2D bg = image.createGraphics();

// 图形抗锯齿
bg.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);

// 设置绘图颜色
bg.setColor(color);

// 设置画笔样式
bg.setStroke(stroke);

// 画线,从上一个点到新的点
bg.drawLine(oldMouseX, oldMouseY, mouseX, mouseY);

// 将缓存中的图形画到画板上
g2d.drawImage(image, 0, 0, this);
}

/**
* 重写 update 方法
*/
public void update(Graphics g) {
this.paint(g);
}

/**
* @return stroke
*/
public BasicStroke getStroke() {
return stroke;
}

/**
* @param stroke 要设置的 stroke
*/
public void setStroke(BasicStroke stroke) {
this.stroke = stroke;
}

/**
* 设置画笔粗细
* @param width
*/
public void setStroke(float width) {
this.stroke = new BasicStroke(width, stroke.getEndCap(), stroke.getLineJoin());
}

/**
* 设置画笔端点的装饰
* @param cap 参考 java.awt.BasicStroke 类静态字段
*/
public void setStroke(int cap) {
this.stroke = new BasicStroke(stroke.getLineWidth(), cap, stroke.getLineJoin());
}

/**
* @return color
*/
public Color getColor() {
return color;
}

/**
* @param color 要设置的 color
*/
public void setColor(Color color) {
this.color = color;
}

public void mouseClicked(MouseEvent mouseEvent) {
}

/**
* 鼠标按下
*/
public void mousePressed(MouseEvent mouseEvent) {
this.oldMouseX = this.mouseX = mouseEvent.getX();
this.oldMouseY = this.mouseY = mouseEvent.getY();
repaint();
}

public void mouseReleased(MouseEvent mouseEvent) {
}

/**
* 鼠标进入棋盘
*/
public void mouseEntered(MouseEvent mouseEvent) {
this.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
}

/**
* 鼠标退出棋盘
*/
public void mouseExited(MouseEvent mouseEvent) {
this.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}

/**
* 鼠标拖动
*/
public void mouseDragged(MouseEvent mouseEvent) {
this.oldMouseX = this.mouseX;
this.oldMouseY = this.mouseY;
this.mouseX = mouseEvent.getX();
this.mouseY = mouseEvent.getY();
repaint();
}

public void mouseMoved(MouseEvent mouseEvent) {
}

}

‘肆’ 易语言画图软件源码

如果想学编程,不建议用易语言。其他语言的画图源码有很多,比如 c 语言的。c 语言几乎是所有人推荐的学习编程的入门语言。

‘伍’ 求MFC画图程序源代码

已发送,请查看,找了四个类似你要求的,有简单又复杂,简单的容易很快学会,复杂的暂时学不会可以以后再慢慢研究

‘陆’ 用C++编一个画图程序,求源程序(只要求能够画直线和圆)

============================================================
//在构造函数里添加以下两句:
//加载十字光标
m_hCrossCur = AfxGetApp()->LoadStandardCursor(IDC_CROSS);
//加载箭头光标
m_hArrowCur = AfxGetApp()->LoadStandardCursor(IDC_ARROW);
============================================================

============================================================
//以下是画直线的代码:
void CMyProject4View::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
m_bLButtonDown = TRUE; //鼠标左键按下
m_ptStart = point; //直线的起点
m_ptEnd = point; //直线的临时端点
SetCapture();
SetCursor(m_hCrossCur);//设置鼠标捕捉
CView::OnLButtonDown(nFlags, point);
}

void CMyProject4View::OnLButtonUp(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if(m_bLButtonDown)
{
m_bLButtonDown = FALSE; //鼠标左键释放
ReleaseCapture(); //释放鼠标捕捉
CClientDC dc(this);//创建客户区设备环境
dc.MoveTo(m_ptStart);
dc.LineTo(point);
SetCursor(m_hArrowCur);
CView::OnLButtonUp(nFlags, point);
}
}
void CMyProject4View::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call default
if(m_bLButtonDown)
{
CClientDC dc(this);
dc.SetROP2(R2_NOT);
dc.MoveTo(m_ptStart); //擦除从起点到上个鼠标移动点间的直线
dc.LineTo(m_ptEnd);
dc.MoveTo(m_ptStart); //绘制从起点到当前点间的直线
dc.LineTo(point);
m_ptEnd = point; //保存当前鼠标位置
}
CView::OnMouseMove(nFlags, point);

}
============================================================

============================================================
以下是画圆的代码:
void CMyProject4View::OnPaint()
{
CPaintDC dc(this); // device context for painting

// TODO: Add your message handler code here
CRect rcClient;
GetClientRect (&rcClient);
int cx=rcClient.Width() /2;
int cy=rcClient.Height() /2;
CRect rc(cx-45,cy-45,cx+45,cy+45);
CBrush brush(RGB(0,250,250));

CBrush *poldbrush=dc.SelectObject(&brush);
dc.Ellipse(rc);
}
// Do not call CView::OnPaint() for painting messages
}
============================================================

============================================================
代码过多,只截取部分程序,希望对你有点帮助!
运行平台:Microsoft Visual C++ 6.0
操作系统:Microsoft Windows XP
============================================================

‘柒’ C++制作 简单画图程序的 源代码

简单的画图我可以给你,至于什么创新,你自个儿弄去吧!

热点内容
文件夹怎么打开 发布:2025-01-18 18:47:07 浏览:296
杉德卡卡号和密码看哪里 发布:2025-01-18 18:43:27 浏览:712
android返回退出 发布:2025-01-18 18:43:26 浏览:601
linux采集视频 发布:2025-01-18 18:38:38 浏览:638
差异度算法 发布:2025-01-18 18:34:27 浏览:698
电脑全套配置有哪些 发布:2025-01-18 18:32:39 浏览:145
新项目源码 发布:2025-01-18 18:14:48 浏览:517
脚本设计图 发布:2025-01-18 18:06:17 浏览:601
内部存储空间不足总是跳出来 发布:2025-01-18 17:56:22 浏览:951
安卓光遇更新后魔法商店去哪里了 发布:2025-01-18 17:55:47 浏览:133