使用 C# 进行视频缩放
我需要在我的 C++ 应用程序中执行视频缩放。我知道我可以使用 COM 与 C# 进行通信,并且我知道 C# 可以执行视频缩放,因此我正在考虑桥接这两个世界。
如何使用C#对内存中的视频图像进行缩放,然后获取图像缩放后的视频数据?
这个问题看起来很相似,但是如何在缩放后获取数据而不是将其显示到屏幕上? 高质量图像缩放库
I need to perform video scaling in my C++ app. I know I can use COM to communicate to C#, and I know C# can perform video scaling, so I am thinking of bridging the two worlds.
How can I, using C#, scale a video image which is in memory, and then get the video data after the image is scaled?
This question seems similar but how do I get the data after scaling instead of showing it to screen?
High Quality Image Scaling Library
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C#(使用 GDI+ 又名
System.Drawing
)可以缩放单个图像,但它没有缩放整个视频(如 MPEG 或 AVI)的内置方法。假设您实际上只需要缩放单个图像(即不是完整的视频),那么您最好从 C++ 中执行此操作(
StretchBlt
将是您为此使用的主要 API 方法。C# (using GDI+ a.k.a.
System.Drawing
) can scale individual images, but it has no built-in way of scaling full videos (like MPEGs or AVIs).Assuming that you actually only need to scale individual images (i.e. not full videos), then you would be better off doing this from C++ (
StretchBlt
would be the main API method that you would use for this.