如何在C上调整bmp图像的大小?
对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(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.
如果您无法使用 ImageMagick,调整位图大小的最简单方法是 GraphicsMagick。
If you can't use ImageMagick, the easiest way to resize a bitmap is GraphicsMagick.