在 Java 中调整 ImageIcon 及其角的大小
我正在用 Java 制作一个 Unicode 翻译器。我完成了所有困难的部分。但现在我想将图像添加到 TextPane,并且用户必须能够调整图像的边缘大小并拖动和拖动图像。将图像拖放到 TextPane 中他喜欢的位置。 (如 Microsoft Word 或 Photoshop)
我尝试了样式文档属性。但除了仅插入图像图标之外我找不到其他方法。
谁能帮我解决这个麻烦吗?
I'm making a Unicode translator in Java. I done all hard part. But now I want to add an image to the TextPane and user must have the ability to resize image with its edges and drag & drop the image within the TextPane where he likes. (like Microsoft Word or Photoshop)
I tried the Styled Document properties.But I couldn't find way except insert only the imageicon.
Can anyone help me with this trouble?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能更好的选择是不使用 textPane。
如果您有自定义可编辑标签,则可以通过双击它来显示文本框来编辑内容,并在按下回车键时更改标签的文本。
还可以尝试一下 JDesktoppane、JLayeredPane,并检查可以向其中添加哪些组件。
May be a better choice would be not to use textPane.
If you have an custom editable label, that can be edited by double clicking on it to show a text box to edit the contents, and change the text of the label when enter key is pressed.
Also give a shot of JDesktoppane, JLayeredPane, and check what components can be added to it.