使用 C# 进行视频缩放

发布于 2024-09-07 13:49:05 字数 269 浏览 5 评论 0原文

我需要在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长不大的小祸害 2024-09-14 13:49:05

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文