Ticket #3 (closed defect)
Fine-tuning dimensions when printing
| Reported by: | anonymous | Owned by: | roebling |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Version: | ||
| Keywords: | printing | Cc: | roebling |
| Blocked By: | Patch: | no | |
| Blocking: |
Description
Bug#: 13
Product: .wxWindows
Version: 2.1.13
Platform: wxGTK
OS/Version: Linux - SuSE
Status: NEW
Resolution:
Severity: wish list
Priority: P2
Component: generic
AssignedTo: ???
ReportedBy: rolinsky@…
URL:
Summary: Fine-tuning dimensions when printing
Because of using integer output format for writing coordinates and
dimensions to PostScript, it's impossible to specify them with printer
resolution. I think it would be better to output in floating-point
format. This may be done in the same way as setting font scaling in
generic/dcpsg.cpp, line 1009:
fprintf( m_pstream, "%f scalefont setfont\n",
YLOG2DEVREL(m_font.GetPointSize() * 1000) / 1000.0F);
