android - 如何在图像上合并和移动文本
嗨
这就是我想做的。
- 全屏打开 jpg。
- 在 jpg 上输入文本。
- 能够将该文本移动到位图上我想要的位置。
- 文本的移动必须用手指完成(不是在代码中)。
有点像创建个人有趣的圣诞贺卡......
我发现很多将文本写入位图的示例 但没有关于移动该文本的任何内容。
需要帮助!
编辑 - 图片和添加的文字必须保存为相同大小的新jpg
hi
Here's what i want to do.
- Open a jpg in full screen.
- Type text on the jpg.
- able to move that text where i want it positioned on the bitmap.
- moving of text must be done with a finger (not in code).
kind of like creating a personal funny Christmas card...
I find loots of example of writing text onto Bitmap
but nothing about moving that text around.
Help is needed!
EDIT
- The image and added text must be saved as a new jpg with same size
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将位图绘制到屏幕上,
然后在其上绘制文本
初始x,y(例如中心),
按照您找到的示例进行操作。
接收描述的输入事件
手指拖动动作。
使用这些输入事件来更改
用于绘制文本的 x,y 值。
重新绘制位图和文本
到屏幕上,文字是
在新的 x,y 位置。
从步骤 2 开始重复。
如果有某些特定部分需要您进行更多详细说明,请告诉我们。
Draw the bitmap onto the screen,
then draw the text onto it at an
initial x,y (e.g. the center),
following the examples you found.
Receive input events describing
finger-dragging movements.
Use those input events to change
the x,y values for drawing the text.
Redraw the bitmap and the text
onto the screen, with the text being
at the new x,y location.
Repeat from step 2.
Let us know if there are particular parts of this that you need more elaboration on.