J2ME 中的图像区域交换
这是我第一次开发 J2ME 应用程序。 我正在尝试交换图像中的区域。 我允许用户点击图像中的 2 个图像区域。 将绘制矩形来显示该区域。 我只需要知道如何交换它们。
谢谢你!
This is my first time developing an J2ME application.
I am trying to swap the regions in an image.
I am allowing the users to tap 2 image region in a image.
Rectangles will be drawn to show the region.
I just need to know how to swap them.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要交换图像,请按照以下步骤操作:
步骤 1:下载该类 SlidingImage.java
步骤2:实例化一个新的SlidingImage:
构造函数参数如下:
要滑动的Image对象
滑动的块数image
幻灯片的类型,可以是 SlidingImage.SLIDE_IN 或
SlidingImage.SLIDE_OUT
第 3 步:启动滑动效果,指定其方向和持续时间(以毫秒为单位):
方向可以是 Canvas 属性 UP、RIGHT、DOWN 和 LEFT 之一。
步骤 4:现在您可以像往常一样简单地指定坐标和锚点来绘制它:
步骤 5:如果您记得 ExplodingImage 类,您可以检查效果是否以公共结束属性结束:
步骤 6:如果您想重置效果,还可以更改滑动图像块和效果类型(滑入或滑出),可以使用reset()方法:
画布示例
To Swap Images Follow below steps:
Step 1: Download this class SlidingImage.java
Step 2: Instantiate a new SlidingImage:
These are the constructor arguments:
An Image object to be slided
The number of pieces of the sliding image
The type of slide, can be SlidingImage.SLIDE_IN or
SlidingImage.SLIDE_OUT
Step 3: Start the sliding effect, specifying its direction and duration (in milliseconds):
Direction can be one of Canvas properties UP, RIGHT, DOWN and LEFT.
Step 4: Now you can paint it simply specifying coordinates and an anchor, as usual:
Step 5: If you remember ExplodingImage class, you can check if effect is ended with the public ended property:
Step 6: If you want to reset the effect, also changing the sliding image pieces and effect type (slide in or out), you can use the reset() method:
Canvas Example