生成BMP图像但显示倒置

发布于 2024-10-11 23:02:30 字数 360 浏览 8 评论 0原文

我通过winddk生成了bitmap.dll。

手动添加为打印机驱动程序,选择打印到文件驱动程序。

使用它,我使用文件中的打印命令创建文档的图像。

我能够创建图像并查看它,但问题是我得到了倒置(镜像)图像。

cScans = pOemPDEV->bmInfoHeader.biHeight;
// Flip the biHeight member so that it denotes top-down bitmap 
pOemPDEV->bmInfoHeader.biHeight = cScans * -1;

有没有人解决此代码?当我评论(以正确生成标题)这一行时遇到问题。

I have generated bitmap.dll through winddk.

Added manually as a printer driver selecting print-to-file driver.

Using this I create an image of my document using print command from file.

I am able to create image and view it, But the problem is that I get inverted(mirror) image.

cScans = pOemPDEV->bmInfoHeader.biHeight;
// Flip the biHeight member so that it denotes top-down bitmap 
pOemPDEV->bmInfoHeader.biHeight = cScans * -1;

Have anyone workaround of this code? As I get the problem when I comment(to get header properly generated) this lines.

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

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

发布评论

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

评论(1

弃爱 2024-10-18 23:02:30

设备独立位图被记录为布置在内存中,底线位于缓冲区的开头。这是 OS/2 设计者在笛卡尔坐标系中进行的一项实验,他们在开发 Windows 3 的同时与 Microsoft 合作。

有两种可能的修复方法:

  1. 颠倒生成缓冲区。
  2. 许多采用 BITMAPINFO 的 Windows API 将负 biHeight 值视为自上而下的 DIB。

Device Independent Bitmaps are documented as being laid out in memory with the bottom line at the start of the buffer. Its an experiment in cartesian co-ordinates perpetrated by the designers of OS/2 who were working with Microsoft at the same time Windows 3 was being developed.

There are two possible fixes:

  1. Generate your buffer upside down.
  2. Many Windows APIs that take a BITMAPINFO treat a negative biHeight value to mean a top down DIB.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文