gpt4 book ai didi

c++ - 打印:下边距错误

转载 作者:行者123 更新时间:2023-12-02 10:25:14 24 4
gpt4 key购买 nike

我正在打印一个编辑控件-首先将其内容复制到一个丰富的编辑控件(至少为2.0-可能是丰富的编辑3.0)-然后从那里打印。

我已经全部工作了...但是边距草率/不正确。

我反复检查了一下代码,验证了调试器中的数字,但页边距(对于我可以测试的打印机)仍然出现错误。

该代码或多或少是来自网络上可用的丰富编辑的各种打印示例的副本-包括The Old New Thing,MSDN的docs和CodeProject等。

归结为(hdc适用于使用用户选择的纸张来源的用户选择的打印机):

// printer dot's per inch (pixels)
const CSize dpi = { GetDeviceCaps(hdc, LOGPIXELSX), GetDeviceCaps(hdc, LOGPIXELSY) };

// paper size (in printer's dots ~ pixels)
const CSize paper = { GetDeviceCaps(hdc, PHYSICALWIDTH), GetDeviceCaps(hdc, PHYSICALHEIGHT) };

// printable size (pixels) - this defines the largest possible usable rect for this printer
const CRect rcPrintable(CPoint(GetDeviceCaps(hdc, PHYSICALOFFSETX), GetDeviceCaps(hdc, PHYSICALOFFSETY)), CSize(GetDeviceCaps(hdc, HORZRES), GetDeviceCaps(hdc, VERTRES)));

// determine the paper extents using our desired margins without violating the device's minimum margins
const CSize margin = { dpi.cx / 4, dpi.cy / 2 }; // 1/4" horizontal x 1/2" vertical margins
const CRect rcPaper(__max(rcPrintable.left, margin.cx), __max(rcPrintable.top, margin.cy), __min(rcPrintable.right, paper.cx - margin.cx), __min(rcPrintable.bottom, paper.cy - margin.cy));

// convert paper size in printer dots (pixels) to paper size in TWIPS
const CRect rcPage(MulDiv(rcPaper.left, 1440, dpi.cx), MulDiv(rcPaper.top, 1440, dpi.cy), MulDiv(rcPaper.right, 1440, dpi.cx), MulDiv(rcPaper.bottom, 1440, dpi.cy));

// build our format range data
FORMATRANGE fr;
Zero(fr);
fr.hdc = hdc;
fr.hdcTarget = hdc;

// Set page rect to physical page size in TWIPS
fr.rc = rcPage;
fr.rcPage = rcPage;

// set our target device to the printer
m_RichEdit.SetTargetDevice(hdc, rcPage.Width());

m_RichEdit.SetSel(0, -1); // Select the entire contents.
m_RichEdit.GetSel(fr.chrg); // Get the selection into a CHARRANGE

// track the number of pages generated
unsigned nPages = 0;

// give this job a reasonable name
CString strPrintJobName = GetPrintJobName();

// Use GDI to print successive pages
DOCINFO di = { sizeof(di) };
di.lpszDocName = strPrintJobName;
if (!StartDoc(hdc, &di))
throw CLabeledException(_T("Unable to start the print job"));

BOOL fSuccess = TRUE;
while (fr.chrg.cpMin < fr.chrg.cpMax)
{
// start page
fSuccess = StartPage(hdc) > 0;
if (!fSuccess)
break;

// format page
int cpMin = m_RichEdit.FormatRange(&fr, TRUE);

// ensure we made forward progress (avoid infinite loop!)
fSuccess = cpMin > fr.chrg.cpMin;
if (!fSuccess)
break;

// render page
fSuccess = m_RichEdit.DisplayBand(const_cast<CRect&>(rcPage));
if (!fSuccess)
break;

// end page
fSuccess = EndPage(hdc) > 0;
if (!fSuccess)
break;

// update no. pages printed
++nPages;

// update our new position
fr.chrg.cpMin = cpMin;
}

// release internal cached data from rich edit control
m_RichEdit.FormatRange(nullptr, FALSE);

// complete or abort the print job
if (fSuccess)
{
EndDoc(hdc);
MessageBox(FormatString(_T("Printed %u pages"), nPages));
}
else
{
DWORD dwError = GetLastError();
AbortDoc(hdc);
throw CContextException(FormatString(_T("Print failed on page %u"), nPages+1), dwError);
}

我的600dpi打印机的rcPaper输出为水平5100像素,垂直6600像素,由于此打印机的最小物理偏移量/限制,所有尺寸上的点数都减少了100点。

因此,我的1/4“x 1/2”边距总是大于打印机的限制,并且我们最终得到的页数为{150、300、4950、6300}(像素)。

但是,当实际打印时,我得到的顶部边距约为5/8英寸,底部边距约为3/16英寸,左边距约为3/8英寸,右边距约为1/8英寸。

因此,就像打印机本身在发送给它的值之上添加了其限制( PHYSICALOFFSETXPHYSICALOFFSETY)一样(或丰富的编辑控件通过这些值抵消了所有内容)。

...或者正在发生其他事情,并且/或者我误会了一些事情!

有想法吗?

最佳答案

答案似乎是,上述数学正确地找到了与打印机的功能和限制相匹配的“绝对”矩形,以获得所需的页边距,但是要创建输出矩形,则需要减去物理偏移量,以便0,0等于实际物理页面上的0,0:

// subtract out the physical offsets
// note: I see no documentation that this is what must be done, yet, it must be done
// otherwise the entire page is off by this exact amount :(
rcPaper.left -= rcPrintable.left;
rcPaper.right -= rcPrintable.left;
rcPaper.top -= rcPrintable.top;
rcPaper.bottom -= rcPrintable.top;

关于c++ - 打印:下边距错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39705663/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com