在 VB.NET 中调整图像大小
我想制作一个简单的 VB 实用程序来使用 vb.net 调整图像大小。我无法弄清楚使用什么 vb 类来实际操作图像。 Image 类和 Bitmap 类不起作用。
任何想法、提示、技巧、教程链接都将不胜感激。
谢谢。
I'd like to make a simple VB utility to resize images using vb.net. I am having trouble figuring out what vb class to use to actually manipulate the images. The Image class and the Bitmap class don't work.
Any ideas, hints, tips, tutorial links are greatly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以简单地使用这一行代码在 Visual Basic .net 中调整图像大小
;
You can simply use this one line code to resize your image in visual basic .net
Where;
这里有一篇文章,其中包含有关如何执行此操作的完整详细信息。
[编辑]
还有一个类似的内容。
Here is an article with full details on how to do this.
[Edit]
One more on the similar lines.
这将使用最佳质量重新调整任何图像的大小,并支持 32bpp 和 alpha。新图像将以原始宽高比将原始图像置于新图像的中心。
This will re-size any image using the best quality with support for 32bpp with alpha. The new image will have the original image centered inside the new one at the original aspect ratio.
不太了解 VB.NET 语法,但这里有一个想法
Don't know much VB.NET syntax but here's and idea
这基本上是Muhammad Saqib的答案,除了两个差异:
1:添加宽度和高度 函数参数。
2:这是一个可以忽略的细微差别...说“作为位图”,而不是“作为图像”。 “如图像”确实工作得很好。我只是更喜欢匹配
Return
类型。请参阅图像 VS 位图类。This is basically Muhammad Saqib's answer except two diffs:
1: Adds width and height function parameters.
2: This is a small nuance which can be ignored... Saying 'As Bitmap', instead of 'As Image'. 'As Image' does work just fine. I just prefer to match
Return
types. See Image VS Bitmap Class.Ex.