91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 57KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2021-06-10
  • 語言: Java
  • 標簽: 新手??java??Swing??IO流??

資源簡介

非常適合加強java基礎的人來練手 完整的畫圖板項目,模仿win10自帶畫圖板寫的 很有學習價值

資源截圖

代碼片段和文件信息

import?java.awt.Color;
import?java.awt.Dimension;
import?java.awt.Font;
import?java.awt.GradientPaint;
import?java.awt.Graphics2D;
import?java.awt.GridLayout;
import?java.awt.Image;
import?java.awt.Paint;
import?java.awt.Rectangle;
import?java.awt.TexturePaint;
import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
import?java.awt.event.MouseEvent;
import?java.awt.event.MouseListener;
import?java.awt.font.FontRenderContext;
import?java.awt.font.TextLayout;
import?java.awt.image.BufferedImage;
import?java.io.File;

import?javax.swing.BorderFactory;
import?javax.swing.ImageIcon;
import?javax.swing.JButton;
import?javax.swing.JColorChooser;
import?javax.swing.JDialog;
import?javax.swing.JFileChooser;
import?javax.swing.JLabel;
import?javax.swing.JOptionPane;
import?javax.swing.JPanel;
import?javax.swing.border.BevelBorder;
import?javax.swing.filechooser.FileNameExtensionFilter;
/**
?*?該類用來改變畫筆的顏色
?*?@author?Fan
?*
?*/
public?class?ColorPanel?extends?JPanel?implements?MouseListener?ActionListener?{

public?static?Paint?border_color?=?new?Color(0?0?0);
public?static?Paint?fill_color?=?null;
private?int?rgb[][]?=?{
{?0?255?128?192?128?255?128?255?0?0?0?0?0?0?128?255?128?255?0?0?0?128?0?128?128
255?128?255?255?255?255?255?}
{?0?255?128?192?0?0?128?255?128?255?128?255?0?0?0?0?128?255?64?255?128?255?64?128?0
0?64?128?255?255?255?255?}
{?0?255?128?192?0?0?0?0?0?0?128?255?128?255?128?255?64?128?64?128?255?255?128?255
255?128?0?64?255?255?255?255?}?};

private?int?r?g?b;
private?JPanel?leftPanel?rightPanel?borderPanel?fillPanel;
private?JPanel[]?tsbPanel;
private?BufferedImage?borderImg?=?new?BufferedImage(16?16?BufferedImage.TYPE_3BYTE_BGR);
private?BufferedImage?fillImg?=?new?BufferedImage(16?16?BufferedImage.TYPE_3BYTE_BGR);
private?JLabel?borderLabel?=?new?JLabel(new?ImageIcon(borderImg));
private?JLabel?fillLabel?=?new?JLabel(new?ImageIcon(fillImg));
private?JLabel?special[]?=?new?JLabel[4];
private?String[]?imgURL?=?{?“./src/img/icon1.gif“?“./src/img/icon2.gif“?“./src/img/icon3.gif“
“./src/img/icon4.gif“?};
private?JDialog?jianbian;
private?JButton?left?right?ok?cancel;
private?ShowColor?jb_panel;
private?BufferedImage?jb_img?=?new?BufferedImage(100?40?BufferedImage.TYPE_3BYTE_BGR);
private?JLabel?jb_lb?=?new?JLabel(new?ImageIcon(jb_img));
public?static?Color?left_color?=?Color.BLACK;
public?static?Color?right_color?=?Color.WHITE;
private?boolean?isOk;//?是否選擇了漸變顏色

public?ColorPanel()?{
this.setLayout(null);
//?初始化
jianbian?=?new?JDialog();
left?=?new?JButton(“LEFT“);
right?=?new?JButton(“RIGHT“);
ok?=?new?JButton(“OK“);
cancel?=?new?JButton(“cancel“);
leftPanel?=?new?JPanel();
rightPanel?=?new?JPanel();
borderPanel?=?new?JPanel();
fillPanel?=?new?JPanel();
tsbPanel?=?new?JP

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????301??2018-09-03?12:56??畫圖\.classpath
?????文件???????????6??2018-10-30?15:21??畫圖\.gitignore
?????文件?????????187??2018-09-26?17:29??畫圖\.idea\encodings.xml
?????文件?????????234??2018-09-26?17:30??畫圖\.idea\misc.xml
?????文件?????????252??2018-09-26?17:25??畫圖\.idea\modules.xml
?????文件????????9464??2018-09-26?17:32??畫圖\.idea\workspace.xml
?????文件?????????382??2018-09-03?12:56??畫圖\.project
?????文件?????????598??2018-09-03?12:56??畫圖\.settings\org.eclipse.jdt.core.prefs
?????文件???????10710??2018-11-25?18:19??畫圖\bin\ColorPanel.class
?????文件???????15290??2018-11-25?19:29??畫圖\bin\DrawPanel.class
?????文件????????8339??2018-11-25?18:19??畫圖\bin\Painter.class
?????文件????????5027??2018-11-25?18:19??畫圖\bin\RightTool.class
?????文件?????????899??2018-11-25?18:19??畫圖\bin\ShowColor.class
?????文件????????2014??2018-11-25?18:19??畫圖\bin\Tab.class
?????文件????????4494??2018-11-25?18:19??畫圖\bin\UnderDrawPanel.class
?????文件?????????924??2018-11-13?11:21??畫圖\bin\img\close.jpg
?????文件?????????836??2004-05-23?20:40??畫圖\bin\img\icon1.gif
?????文件?????????868??2004-05-23?20:43??畫圖\bin\img\icon2.gif
?????文件?????????948??2004-05-23?21:54??畫圖\bin\img\icon3.gif
?????文件?????????835??2004-05-23?22:00??畫圖\bin\img\icon4.gif
?????文件????????1558??2004-06-02?01:42??畫圖\bin\img\paint.gif
?????文件?????????120??2004-05-25?00:52??畫圖\bin\img\tool1.gif
?????文件?????????130??2004-05-29?18:16??畫圖\bin\img\tool10.gif
?????文件?????????127??2004-05-30?22:41??畫圖\bin\img\tool11.gif
?????文件?????????138??2004-05-25?00:51??畫圖\bin\img\tool2.gif
?????文件?????????138??2004-05-25?00:51??畫圖\bin\img\tool3.gif
?????文件?????????140??2004-05-25?00:51??畫圖\bin\img\tool4.gif
?????文件?????????123??2004-05-27?00:53??畫圖\bin\img\tool5.gif
?????文件?????????893??2004-05-27?00:55??畫圖\bin\img\tool6.gif
?????文件?????????890??2004-05-27?00:56??畫圖\bin\img\tool7.gif
?????文件?????????134??2004-05-27?01:07??畫圖\bin\img\tool8.gif
............此處省略25個文件信息

評論

共有 條評論