toolFlag = tempflag;
System.out.println("can not read file");
}
}
}
if(e.getSource()==savePic)//保存图画
{
savePicture.setVisible(true);
try{
File fileout = new File(savePicture.getDirectory(),savePicture.getFile());
picOut = new FileOutputStream(fileout);
VOut = new ObjectOutputStream(picOut);
VOut.writeObject(paintInfo);
VOut.close();
}
catch(IOException IOe)
{
System.out.println("can not write object");
}
}
}
}//end paintboard
public class pb
{
public static void main(String args[])
{ new paintboard("画图程序"); }
}
python代码画樱花是什么?Python代码画樱花具体指的就是在Python相关的一些编程软件和一些相关的配置环境里面就能够利用相关的一些代码 。
然后去生成一个后缀为.py的文件,然后就够以这个文件在相关的运行环境里面去运行一些效果就是运行到樱花飘落的这样子的一个效果图,还有一些就是动态图等等 。
在相关的一些代码的编辑软件里面,最主要就是要根据一些语法去创立一些能够进行编译的代码 , 然后就能够把它进行保存,然后去运行出对应的一个效果图 。并且像这种樱花飘落的场景的话,主要就是以动态效果图去进行呈现的 。
所以说学习好Python这样子的一个编程方向的话是很有利于自己去开发出不同的东西的 。
java 实现 简单画图功能(简单点的)楼主给你一个我编的,直接保存成pb.java编译运行 , 就是你要的画图功能
____________________________________________________________________
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import java.awt.geom.*;
import java.io.*;
class Point implements Serializable
{
int x,y;
Color col;
int tool;
int boarder;
Point(int x, int y, Color col, int tool, int boarder)
{
this.x = x;
this.y = y;
this.col = col;
this.tool = tool;
this.boarder = boarder;
}
}
class paintboard extends Frame implements ActionListener,MouseMotionListener,MouseListener,ItemListener
{
int x = -1, y = -1;
int con = 1;//画笔大小
int Econ = 5;//橡皮大小
int toolFlag = 0;//toolFlag:工具标记
//toolFlag工具对应表:
//(0--画笔);(1--橡皮);(2--清除);
//(3--直线);(4--圆);(5--矩形);
Color c = new Color(0,0,0); //画笔颜色
BasicStroke size = new BasicStroke(con,BasicStroke.CAP_BUTT,BasicStroke.JOIN_BEVEL);//画笔粗细
Point cutflag = new Point(-1, -1, c, 6, con);//截断标志
Vector paintInfo = null;//点信息向量组
int n = 1;
FileInputStream picIn = null;
FileOutputStream picOut = null;
ObjectInputStream VIn = null;
ObjectOutputStream VOut = null;
// *工具面板--画笔,直线,圆,矩形,多边形,橡皮 , 清除*/
Panel toolPanel;
Button eraser, drLine,drCircle,drRect;
Button clear ,pen;
Choice ColChoice,SizeChoice,EraserChoice;
Button colchooser;
Label 颜色,大小B,大小E;
//保存功能
Button openPic,savePic;
FileDialog openPicture,savePicture;
paintboard(String s)
{
super(s);
addMouseMotionListener(this);
addMouseListener(this);
paintInfo = new Vector();
/*各工具按钮及选择项*/
//颜色选择
ColChoice = new Choice();
ColChoice.add("black");
ColChoice.add("red");
ColChoice.add("blue");
ColChoice.add("green");
ColChoice.addItemListener(this);
//画笔大小选择
SizeChoice = new Choice();
推荐阅读
- 餐饮海报怎么去水印小程序,餐饮海报怎么设计
- 安卓刷机卡刷还是线刷包,安卓刷机可以解决变卡问题吗
- 电商达人如何线下裂变,电商达人如何线下裂变营销
- linux日志分析命令,linux 日志命令
- 安卓go语言替代java android go语言
- js字符串某个字符次数,js字符串重复次数,重复字符串
- chatgpt注册接收不了短信,potato chat注册不了
- 小程序源码怎么选中多个文件,小程序源码怎么选中多个文件打印
- php怎样提交数据库 php提交表单数据到数据库