实例介绍
java实现的小应用 集成了截屏、取色,放大镜,画图的功能 界面还是较为友好的。适合想学习java界面Swing、awt 技术的新手学习 我的积分不多,就收取一分的资源分吧 下载评论可反分的!
【实例截图】
【核心代码】
240462CoderTools
└── CoderTools
├── bin
│ ├── com
│ │ └── kiritor
│ │ ├── CaptureScreen
│ │ │ ├── BackGroundPanel.class
│ │ │ ├── CaptureView$1.class
│ │ │ ├── CaptureView$2.class
│ │ │ ├── CaptureView.class
│ │ │ ├── ImageLabel.class
│ │ │ ├── ImagePanel.class
│ │ │ └── ToolImagePanel.class
│ │ ├── getColor
│ │ │ ├── BackGroundPanel.class
│ │ │ ├── ColorView$1.class
│ │ │ ├── ColorView$2.class
│ │ │ ├── ColorView.class
│ │ │ ├── ImagePanel.class
│ │ │ ├── InfoPanel$1.class
│ │ │ ├── InfoPanel$2.class
│ │ │ ├── InfoPanel.class
│ │ │ └── ToolImagePanel.class
│ │ ├── magnifier
│ │ │ ├── ConfigData.class
│ │ │ ├── MagnifierIcon.class
│ │ │ ├── MagnifierPanel.class
│ │ │ ├── MagnifierWindow$1.class
│ │ │ ├── MagnifierWindow$2.class
│ │ │ ├── MagnifierWindow$3.class
│ │ │ ├── MagnifierWindow$4.class
│ │ │ ├── MagnifierWindow$5.class
│ │ │ ├── MagnifierWindow$6.class
│ │ │ ├── MagnifierWindow$7.class
│ │ │ ├── MagnifierWindow$MouseFunctions.class
│ │ │ ├── MagnifierWindow$MouseMotionFunctions.class
│ │ │ ├── MagnifierWindow$TimeUpdate.class
│ │ │ └── MagnifierWindow.class
│ │ ├── painter
│ │ │ ├── Painter$ColorPanel.class
│ │ │ ├── Painter$DrawPanel.class
│ │ │ ├── Painter$Gradient.class
│ │ │ ├── Painter$SetPanel.class
│ │ │ ├── Painter$UnderDrawPanel.class
│ │ │ └── Painter.class
│ │ ├── panel
│ │ │ ├── img
│ │ │ │ ├── color_entered.png
│ │ │ │ ├── color.png
│ │ │ │ ├── cutAll_entered.png
│ │ │ │ ├── cutAll.png
│ │ │ │ ├── cut.png
│ │ │ │ ├── cut_red.png
│ │ │ │ ├── fangdajingbak.png
│ │ │ │ ├── fangdajing.png
│ │ │ │ ├── file_open_entered.png
│ │ │ │ ├── file_open.png
│ │ │ │ ├── newfile_entered.png
│ │ │ │ ├── newfile.png
│ │ │ │ ├── painter_entered.png
│ │ │ │ └── painter.png
│ │ │ ├── ToolPanel$1.class
│ │ │ ├── ToolPanel$2.class
│ │ │ ├── ToolPanel$3.class
│ │ │ ├── ToolPanel$4.class
│ │ │ ├── ToolPanel$5.class
│ │ │ ├── ToolPanel$6.class
│ │ │ ├── ToolPanel$7.class
│ │ │ ├── ToolPanel$BMPfilter.class
│ │ │ ├── ToolPanel$JPGfilter.class
│ │ │ ├── ToolPanel$PNGfilter.class
│ │ │ └── ToolPanel.class
│ │ └── start
│ │ ├── CoderFrame$10.class
│ │ ├── CoderFrame$11.class
│ │ ├── CoderFrame$12.class
│ │ ├── CoderFrame$13.class
│ │ ├── CoderFrame$14.class
│ │ ├── CoderFrame$1.class
│ │ ├── CoderFrame$2.class
│ │ ├── CoderFrame$3.class
│ │ ├── CoderFrame$4.class
│ │ ├── CoderFrame$5.class
│ │ ├── CoderFrame$6.class
│ │ ├── CoderFrame$7.class
│ │ ├── CoderFrame$8.class
│ │ ├── CoderFrame$9.class
│ │ └── CoderFrame.class
│ ├── images
│ │ ├── cancel_entered.png
│ │ ├── cancel.png
│ │ ├── canel_entered.png
│ │ ├── canel.png
│ │ ├── colorbg.png
│ │ ├── copybak.png
│ │ ├── copy.png
│ │ ├── cutbg.png
│ │ ├── infobg.png
│ │ ├── save_entered.png
│ │ └── save.png
│ ├── img
│ │ ├── icon1.gif
│ │ ├── icon2.gif
│ │ ├── icon3.gif
│ │ ├── icon4.gif
│ │ ├── paint.gif
│ │ ├── Thumbs.db
│ │ ├── tool10.gif
│ │ ├── tool11.gif
│ │ ├── tool1.gif
│ │ ├── tool2.gif
│ │ ├── tool3.gif
│ │ ├── tool4.gif
│ │ ├── tool5.gif
│ │ ├── tool6.gif
│ │ ├── tool7.gif
│ │ ├── tool8.gif
│ │ └── tool9.gif
│ └── titleImg
│ ├── close.png
│ ├── close_press.png
│ ├── curse.png
│ ├── hidden.png
│ ├── hidden_press.png
│ ├── titlebg.png
│ ├── title.png
│ └── title_try.png
├── Magnifier.cfg
└── src
├── com
│ └── kiritor
│ ├── CaptureScreen
│ │ ├── BackGroundPanel.java
│ │ ├── CaptureView.java
│ │ ├── ImageLabel.java
│ │ ├── ImagePanel.java
│ │ └── ToolImagePanel.java
│ ├── getColor
│ │ ├── BackGroundPanel.java
│ │ ├── ColorView.java
│ │ ├── ImagePanel.java
│ │ ├── InfoPanel.java
│ │ └── ToolImagePanel.java
│ ├── magnifier
│ │ ├── MagnifierIcon.java
│ │ ├── MagnifierPanel.java
│ │ └── MagnifierWindow.java
│ ├── painter
│ │ └── Painter.java
│ ├── panel
│ │ ├── img
│ │ │ ├── color_entered.png
│ │ │ ├── color.png
│ │ │ ├── cutAll_entered.png
│ │ │ ├── cutAll.png
│ │ │ ├── cut.png
│ │ │ ├── cut_red.png
│ │ │ ├── fangdajingbak.png
│ │ │ ├── fangdajing.png
│ │ │ ├── file_open_entered.png
│ │ │ ├── file_open.png
│ │ │ ├── newfile_entered.png
│ │ │ ├── newfile.png
│ │ │ ├── painter_entered.png
│ │ │ └── painter.png
│ │ └── ToolPanel.java
│ └── start
│ └── CoderFrame.java
├── images
│ ├── cancel_entered.png
│ ├── cancel.png
│ ├── canel_entered.png
│ ├── canel.png
│ ├── colorbg.png
│ ├── copybak.png
│ ├── copy.png
│ ├── cutbg.png
│ ├── infobg.png
│ ├── save_entered.png
│ ├── save.png
│ └── Thumbs.db
├── img
│ ├── icon1.gif
│ ├── icon2.gif
│ ├── icon3.gif
│ ├── icon4.gif
│ ├── paint.gif
│ ├── Thumbs.db
│ ├── tool10.gif
│ ├── tool11.gif
│ ├── tool1.gif
│ ├── tool2.gif
│ ├── tool3.gif
│ ├── tool4.gif
│ ├── tool5.gif
│ ├── tool6.gif
│ ├── tool7.gif
│ ├── tool8.gif
│ └── tool9.gif
└── titleImg
├── close.png
├── close_press.png
├── curse.png
├── hidden.png
├── hidden_press.png
├── titlebg.png
├── title.png
└── title_try.png
27 directories, 180 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论