android - 如何在图像上合并和移动文本

发布于 2024-11-05 07:18:58 字数 241 浏览 0 评论 0原文


这就是我想做的。
- 全屏打开 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人 2024-11-12 07:18:58
  1. 将位图绘制到屏幕上,
    然后在其上绘制文本
    初始x,y(例如中心),
    按照您找到的示例进行操作。

  2. 接收描述的输入事件
    手指拖动动作。

  3. 使用这些输入事件来更改
    用于绘制文本的 x,y 值。

  4. 重新绘制位图和文本
    到屏幕上,文字是
    在新的 x,y 位置。

  5. 从步骤 2 开始重复。

如果有某些特定部分需要您进行更多详细说明,请告诉我们。

  1. 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.

  2. Receive input events describing
    finger-dragging movements.

  3. Use those input events to change
    the x,y values for drawing the text.

  4. Redraw the bitmap and the text
    onto the screen, with the text being
    at the new x,y location.

  5. Repeat from step 2.

Let us know if there are particular parts of this that you need more elaboration on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文