如何调整 servlet 生成的 GWT 图像的大小?
我有一个 servlet,它使用数据库中的数据生成 PNG...然后在我的 GWT 应用程序中,我使用 servlet URL 来获取图像,所有这些工作都完美,但问题是我无法修改图像的大小以适应由于图像是从 servlet 生成的,所以保留给它的框。有没有一种方法可以在生成图像时修改尺寸?或者可能是设置图像大小的客户端解决方案? 我有什么想法怎么做吗? 提前致谢,
I have a servlet that generates PNG using data in database...then in my GWT Application i use the servlet URL to get the image, all of this work perfectly, but the problem is i can't modify the size of image to fit the box reserved to it since the image is generated from servlet.Is there a method to modify dimensions when generating image? or may be client side solution to setup image's size?
Any ideas how I'd do this?
Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您正在将其加载到 gwt Image 小部件中。如果是这样,只需在客户端使用
setWidth( "10px")
和setHeight( "10px")
的 widget 函数即可。I am assuming you are loading it in a gwt Image widget. If so, just use the widget functions of
setWidth( "10px")
andsetHeight( "10px")
on the client side.