22#include "glChartCanvas.h"
23#include "ocpn_frame.h"
24#include "printout_chart.h"
32bool ChartPrintout::OnPrintPage(
int page) {
34 if (dc && page == 1) {
41void ChartPrintout::DrawPage(wxDC* dc,
int page) {
44 gFrame->GetFocusCanvas()->GetClientSize(&sx, &sy);
54 max_x += (2 * margin_x);
55 max_y += (2 * margin_y);
62 float scale_x = (float)(w / max_x);
63 float scale_y = (float)(h / max_y);
66 float actual_scale = wxMin(scale_x, scale_y);
69 float pos_x = (float)((w - (max_x * actual_scale)) / 2.0);
70 float pos_y = (float)((h - (max_y * actual_scale)) / 2.0);
72 pos_x = wxMax(pos_x, margin_x);
73 pos_y = wxMax(pos_y, margin_y);
76 dc->SetUserScale(actual_scale, actual_scale);
77 dc->SetDeviceOrigin((
long)pos_x, (
long)pos_y);
83 if (m_gl_bmp.IsOk()) {
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);
93 mdc.SelectObject(*(gFrame->GetFocusCanvas()->pscratch_bm));
95 dc->Blit(0, 0, gFrame->GetFocusCanvas()->pscratch_bm->GetWidth(),
96 gFrame->GetFocusCanvas()->pscratch_bm->GetHeight(), &mdc, 0, 0);
98 mdc.SelectObject(wxNullBitmap);
105 int gsx = gFrame->GetFocusCanvas()->GetglCanvas()->GetSize().x;
106 int gsy = gFrame->GetFocusCanvas()->GetglCanvas()->GetSize().y;
108 unsigned char* buffer = (
unsigned char*)malloc(gsx * gsy * 4);
109 glReadPixels(0, 0, gsx, gsy, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
111 unsigned char* e = (
unsigned char*)malloc(gsx * gsy * 3);
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];
122 wxImage image(gsx, gsy);
124 wxImage mir_imag = image.Mirror(
false);
125 m_gl_bmp = wxBitmap(mir_imag);
ChartCanvas - Main chart display and interaction component.
void GenerateGLbmp()
In OperGL mode, make the bitmap capture of the screen before the print method starts as to be sure th...