完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,团队我想从PC调整图像大小,我希望使用VEE分辨率高于800X600。
我能怎么做? BR; 希博伊 以上来自于谷歌翻译 以下为原文 Hi, Team I would like to resize image from PC and I want resolution above 800X600 by using VEE. How can I do? BR; Shyboy |
|
相关推荐
10个回答
|
|
您可以通过执行命令事件在VEE中使用进行批处理的外部程序。
或者你可以通过dotnet功能来做到这一点。 在VRF中有一些关于VEE邮件反射器的样本。 你需要样品代码吗? 以上来自于谷歌翻译 以下为原文 You may use external program which does batch processing , within VEE via execute command thing. Or you may do this via dotnet funtions. there were some samples about that in the VRF, the VEE mail reflector. DO you need sample code ? |
|
|
|
60user176 发表于 2019-1-14 20:17 嗨,团队是的,我需要示例代码。 谢谢。编辑:害羞的男孩在2013年7月1日上午5:27 以上来自于谷歌翻译 以下为原文 Hi,Team Yes, I need sample code. Thaks you. Edited by: shyboy on Jul 1, 2013 5:27 AM |
|
|
|
附加许多不同可能性之一.... 以上来自于谷歌翻译 以下为原文 one of many different possibilities attached.... 附件
|
|
|
|
检查传递给.NET方法的参数。
其中一个参数数据类型不正确。 由于您的公式被最小化,我无法分辨出哪一个。 祝你好运。 -MK 以上来自于谷歌翻译 以下为原文 Check your parameter passing to the .NET method. One of the parameter data type is incorrect. I cannot tell which since your Formula is minimized. Good luck. -mk |
|
|
|
亲爱的团队,我们对错误702错误有疑问? 如何从目录D: iRCT Software CarrierPower Picpower.PNG中删除原始文件? 当我尝试使用命令“execute close”和“System.IO.File.Delete(path)”从目录中删除文件时; ,程序发生错误为附件。 请参阅图表使用Agilent VEE调整图像大小? 供你参考。 你能告诉我示例命令吗? BR; 希博伊 以上来自于谷歌翻译 以下为原文 Dear Team, We have some question about error Error 702 ?. How can I delete an original file from the directory D:iRCT SoftwareCarrierPowerPicpower.PNG? When I try to delete file from the directory with command “ execute close” and “System.IO.File.Delete(path)”; , the program occurred error as attach file. Please see diagram Resize image by using Agilent VEE? for you reference. Could you please let me have the example command? BR; Shyboy |
|
|
|
嗨,害羞。
我曾尝试使用以下代码定义图像的大小:使用System.IO; 使用System.Drawing.Printing; 使用Yiigo.Imaging; 使用Yiigo.Imaging.Processing; 使用YiigoImage Image = new YiigoImage(); {string ImageID =(@“C: yiigo_example.jpg”); float ImageWidth =“300”; float ImageHeight =“500”; } Image.YiigoImageProcessResize(@“C: yiigo_example.jpg”,“300”,“500”); Image.Save(@“C: yiigo_example.jpg”); 或者您也可以谷歌并选择专业的第三方成像工具包,其处理方式简单快捷,可以帮助您完成相关工作。 如果它是完全手动的并且可以由用户根据我们自己的喜好定制,那将更好。 如果可能,请务必先检查其免费试用包。 我希望你成功。 祝你好运。 最好的问候,Arron 以上来自于谷歌翻译 以下为原文 Hi, shyboy. I have ever tried to define the size of images with the help of the following code: using System.IO; using System.Drawing.Printing; using Yiigo.Imaging; using Yiigo.Imaging.Processing; using YiigoImage Image = new YiigoImage(); { string ImageID = (@"C: yiigo_example.jpg "); float ImageWidth = "300"; float ImageHeight = "500"; } Image.YiigoImageProcessResize(@"C: yiigo_example.jpg", "300", "500"); Image.Save(@"C: yiigo_example.jpg"); Or you can also google it and select a professional 3rd party Imaging toolkit whose way of processing is simple and fast to help you with the related work. It will be better if it is totally manual and can be customized by users according to our own favors. Remember to check its free trial package first if possible. I hope you success. Good luck. Best regards, Arron |
|
|
|
实际上,如果你已经为你的图像处理库添加了一个图像处理库,那么[/ url = http://www.rasteredge.com/how-to/csharp-imaging/resize-image/]在PC [/ url]中调整图像大小并不复杂
应用程序,这里是用于图像大小调整的示例C#代码:string fileName =“c:/Sample.png”; REImage reImage = REFile.OpenImageFile(fileName); ImageProcessing.ApplyResize(reImage,500,500); REFile.SaveImageFile(reImage,“c:/reimage.png”,new PNGEncoder()); 以上来自于谷歌翻译 以下为原文 Actually, image resizing in PC is not so complicated if you have add an image processing library to your application, here are the sample C# code for image resizing: string fileName = "c:/Sample.png"; REImage reImage = REFile.OpenImageFile(fileName); ImageProcessing.ApplyResize(reImage, 500, 500); REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder()); |
|
|
|
xiangqin5322 发表于 2019-1-14 21:27 嗨,奥古斯丁。 我想我是否需要另一个图像缩放器来处理这些代码:任何关于它的sugegstion将不胜感激。 谢谢你的加入。 最好的问候,潘---------------------------------------------- -------------------------------- *标签:*调整大小图像; 图像大小调整 以上来自于谷歌翻译 以下为原文 Hi, Augustine . I wonder do I need another image resizer to deal with those code: Any sugegstion about it will be appreciated. Thanks in adcance. Best regards, Pan ------------------------------------------------------------------------------ *Tags:* resize image ; image resizing |
|
|
|
|
|
|
|
使用此成像SDK可以实现许多[url = http://www.rasteredge.com/dotnet-imaging/image-processing/]图像处理[/ url]功能,包括图像清理,[url = http:// www
.rasteredge.com / dotnet-imaging / image-processing-basic-transformationing /]图像转换[/ url],颜色模式转换,颜色调整,图像大小调整,降噪,边缘检测等。 以上来自于谷歌翻译 以下为原文 Many image processing functions can be realized using this imaging SDK, including image cleanup, image transformation, color mode conversion, color adjustment, image resizing, noise reduction, edge detection and more. |
|
|
|
只有小组成员才能发言,加入小组>>
1300 浏览 0 评论
2379 浏览 1 评论
2199 浏览 1 评论
2068 浏览 5 评论
2955 浏览 3 评论
1148浏览 1评论
关于Keysight x1149 Boundary Scan Analyzer
761浏览 0评论
N5230C用“CALC:MARK:BWID?”获取Bwid,Cent,Q,Loss失败,请问大佬们怎么解决呀
956浏览 0评论
1300浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-30 13:14 , Processed in 1.645316 second(s), Total 65, Slave 59 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号