-
MMAPI操作摄像头演示,其功能是通过这个程序实现手机摄像头的一些基本设置。...
MMAPI操作摄像头演示,其功能是通过这个程序实现手机摄像头的一些基本设置。-MMAPI camera operation demonstration, and its function is to realize through this process cell phone cameras some of the basic settings.
- 2022-04-29 09:17:52下载
- 积分:1
-
一个简单的J2ME 手机远程监控程序
需要一款IP 摄像头搭配使用...
一个简单的J2ME 手机远程监控程序
需要一款IP 摄像头搭配使用-A simple J2ME mobile remote monitoring program
requires an IP camera
- 2022-03-26 06:33:28下载
- 积分:1
-
Classic FC Game super Planet War, the J2ME version! ! Function basically achie...
经典FC游戏《超惑星战记》的J2ME版本!!功能基本上都实现了-Classic FC Game super Planet War, the J2ME version! ! Function basically achieve a
- 2023-07-19 04:00:03下载
- 积分:1
-
这个范例程序演示了利用j2me技术开发无线服务器支持的应用。这是一个电影票订购程序,用户可以借助手机订购电影票。...
这个范例程序演示了利用j2me技术开发无线服务器支持的应用。这是一个电影票订购程序,用户可以借助手机订购电影票。-This sample application illustrates how to create wireless server-supported applications that use Java technology from end to end. In this movie ticketing application, customers may purchase movie tickets using a mobile device such as a cell phone, palmtop, or two-way pager.
- 2023-06-03 00:35:03下载
- 积分:1
-
手机VNC程式, 利用手机远端桌面的源码, 使用J2ME编程
手机VNC程式, 利用手机远端桌面的源码, 使用J2ME编程-phone VNC programs, the use of mobile remote desktop source code, the use J2ME programming
- 2022-03-05 15:31:54下载
- 积分:1
-
《J2ME图形显示基础》中第一章,说明如何在手机模拟器上显示各种变量的值...
《J2ME图形显示基础》中第一章,说明如何在手机模拟器上显示各种变量的值-"J2ME graphics foundation," the first chapter on how the phone simulator showed the value of variables
- 2022-02-06 03:09:52下载
- 积分:1
-
《J2ME图形应用基础》中的例子,综合各种图形应用的完整例子。...
《J2ME图形应用基础》中的例子,综合各种图形应用的完整例子。-"J2ME graphical application foundation" for the example, the integration of a complete graphics application examples.
- 2022-04-22 06:00:59下载
- 积分:1
-
Wang Sen teachers Java phone PDA design entry procedures
王森老师的Java手机PDA程序设计入门-Wang Sen teachers Java phone PDA design entry procedures
- 2022-01-30 14:48:47下载
- 积分:1
-
一个在手机上实现RSS阅读器功能的程序代码,该程序设计到J2ME界面编程,j2ME网络访问,j2ME设计模式等方面的内容,是一个很好的学习和二次开发的平台。...
一个在手机上实现RSS阅读器功能的程序代码,该程序设计到J2ME界面编程,j2ME网络访问,j2ME设计模式等方面的内容,是一个很好的学习和二次开发的平台。-Realize a mobile phone RSS reader function code, the program design to J2ME programming interface, j2ME network access, j2ME design patterns such as content, is a very good learning and secondary development platform.
- 2022-05-26 02:45:04下载
- 积分:1
-
java 为图片添加水印 示例
为图片添加水印 【核心代码】 /*** 添加水印* @param imagePath 图片绝对路径* @param watermarkPath 水印图片绝对路径* @param position 水印图片位置* @return 生成水印图片的绝对路径*/public static String addWatermark(String imagePath, String watermarkPath, String position) {logger.info("为图片({})在位置{}添加水印({})", imagePath, position, watermarkPath);if (StringUtils.isNotBlank(imagePath) && StringUtils.isNotBlank(watermarkPath)) {File image = new File(imagePath);File watermark = new File(watermarkPath);Position pos = getPostion(position);if (image.isFile() && image.exists() && watermark.isFile()) {try {BufferedImage bi = ImageIO.read(image);Builder builder = Thumbnails.of(imagePath);BufferedImage watermarkImg = ImageIO.read(watermark);File newWatermark = null;// 原图的宽或高是水印图片宽或高的2倍及以上,则直接打上水印原图;否则缩略水印图片,以原图宽或高的二分之一if (bi.getWidth() / watermarkImg.getWidth()
- 2017-10-13下载
- 积分:1