OpenCPN Partial API docs
Loading...
Searching...
No Matches
printout_chart.cpp
1/***************************************************************************
2 * Copyright (C) 2010 by David S. Register *
3 * Copyright (C) 2025 by NoCodeHummel *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 **************************************************************************/
20
21#include "chcanv.h"
22#include "glChartCanvas.h"
23#include "ocpn_frame.h"
24#include "printout_chart.h"
25
26extern bool g_bopengl;
27extern MyFrame* gFrame;
28
29class ChartCanvas;
30ChartCanvas* GetFocusCanvas();
31
32bool ChartPrintout::OnPrintPage(int page) {
33 wxDC* dc = GetDC();
34 if (dc && page == 1) {
35 DrawPage(dc, page);
36 return true;
37 } else
38 return false;
39}
40
41void ChartPrintout::DrawPage(wxDC* dc, int page) {
42 // Get the Size of the Chart Canvas
43 int sx, sy;
44 gFrame->GetFocusCanvas()->GetClientSize(&sx, &sy); // of the canvas
45
46 float max_x = sx;
47 float max_y = sy;
48
49 // Let's have at least some device units margin
50 float margin_x = 50;
51 float margin_y = 50;
52
53 // Add the margin to the graphic size
54 max_x += (2 * margin_x);
55 max_y += (2 * margin_y);
56
57 // Get the size of the DC in pixels
58 int w, h;
59 dc->GetSize(&w, &h);
60
61 // Calculate a suitable scaling factor
62 float scale_x = (float)(w / max_x);
63 float scale_y = (float)(h / max_y);
64
65 // Use x or y scaling factor, whichever fits on the DC
66 float actual_scale = wxMin(scale_x, scale_y);
67
68 // Calculate the position on the DC for centring the graphic
69 float pos_x = (float)((w - (max_x * actual_scale)) / 2.0);
70 float pos_y = (float)((h - (max_y * actual_scale)) / 2.0);
71
72 pos_x = wxMax(pos_x, margin_x);
73 pos_y = wxMax(pos_y, margin_y);
74
75 // Set the scale and origin
76 dc->SetUserScale(actual_scale, actual_scale);
77 dc->SetDeviceOrigin((long)pos_x, (long)pos_y);
78
79 // Get the latest bitmap as rendered by the ChartCanvas
80
81 if (g_bopengl) {
82#ifdef ocpnUSE_GL
83 if (m_gl_bmp.IsOk()) {
84 wxMemoryDC mdc;
85 mdc.SelectObject(m_gl_bmp);
86 dc->Blit(0, 0, m_gl_bmp.GetWidth(), m_gl_bmp.GetHeight(), &mdc, 0, 0);
87 mdc.SelectObject(wxNullBitmap);
88 }
89#endif
90 } else {
91 // And Blit/scale it onto the Printer DC
92 wxMemoryDC mdc;
93 mdc.SelectObject(*(gFrame->GetFocusCanvas()->pscratch_bm));
94
95 dc->Blit(0, 0, gFrame->GetFocusCanvas()->pscratch_bm->GetWidth(),
96 gFrame->GetFocusCanvas()->pscratch_bm->GetHeight(), &mdc, 0, 0);
97
98 mdc.SelectObject(wxNullBitmap);
99 }
100}
101
103 if (g_bopengl) {
104#ifdef ocpnUSE_GL
105 int gsx = gFrame->GetFocusCanvas()->GetglCanvas()->GetSize().x;
106 int gsy = gFrame->GetFocusCanvas()->GetglCanvas()->GetSize().y;
107
108 unsigned char* buffer = (unsigned char*)malloc(gsx * gsy * 4);
109 glReadPixels(0, 0, gsx, gsy, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
110
111 unsigned char* e = (unsigned char*)malloc(gsx * gsy * 3);
112
113 if (buffer && e) {
114 for (int p = 0; p < gsx * gsy; p++) {
115 e[3 * p + 0] = buffer[4 * p + 0];
116 e[3 * p + 1] = buffer[4 * p + 1];
117 e[3 * p + 2] = buffer[4 * p + 2];
118 }
119 }
120 free(buffer);
121
122 wxImage image(gsx, gsy);
123 image.SetData(e);
124 wxImage mir_imag = image.Mirror(false);
125 m_gl_bmp = wxBitmap(mir_imag);
126#endif
127 }
128}
ChartCanvas - Main chart display and interaction component.
Definition chcanv.h:148
void GenerateGLbmp()
In OperGL mode, make the bitmap capture of the screen before the print method starts as to be sure th...
Main application frame.
Definition ocpn_frame.h:135