如何在C上调整bmp图像的大小?

发布于 2024-10-01 21:32:23 字数 86 浏览 4 评论 0原文

对于 jpeg、gif、png,我使用 libgd。 (不是 ImageMagick - 这是不可能的)。我可以使用简单的方法/库调整 bmp 图像的大小吗?

For jpeg,gif,png I use libgd. ( not ImageMagick - it's not possible ). May I resize bmp image using simple method/library ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

大多数处理图像大小调整的库在内部将图像表示为位图(即未压缩的像素数组)。因此,从文件中读取位图图像并将其放入内存中并不困难。

Most of the libraries that deal with image resizing represent the image as a bitmap (i.e. an uncompressed array of pixels) internally. So it wouldn't be very hard to read in a bitmap image from a file and put it in memory.

赠意 2024-10-08 21:32:23

如果您无法使用 ImageMagick,调整位图大小的最简单方法是 GraphicsMagick

If you can't use ImageMagick, the easiest way to resize a bitmap is GraphicsMagick.

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