MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/gui.h>
11 #include <iostream>
12 
13 using namespace mrpt;
14 using namespace mrpt::gui;
15 using namespace mrpt::img;
16 using namespace std;
17 
18 // ------------------------------------------------------
19 // TestFonts
20 // ------------------------------------------------------
21 void TestFonts()
22 {
23  CImage img(400, 300);
24 
25  img.filledRectangle(0, 0, 400, 300, TColor(0x50, 0x50, 0x50));
26 
27  int y = 10;
28  img.selectTextFont("5x7");
29  img.textOut(10, y, "Hello World! with font \"5x7\"", TColor::white());
30  y += 20;
31 
32  img.selectTextFont("6x13");
33  img.textOut(10, y, "Hello World! with font \"6x13\"", TColor::white());
34  y += 20;
35 
36  img.selectTextFont("6x13B");
37  img.textOut(10, y, "Hello World! with font \"6x13B\"", TColor::white());
38  y += 20;
39 
40  img.selectTextFont("6x13O");
41  img.textOut(10, y, "Hello World! with font \"6x13O\"", TColor::white());
42  y += 20;
43 
44  img.selectTextFont("9x15");
45  img.textOut(10, y, "Hello World! with font \"9x15\"", TColor::white());
46  y += 20;
47 
48  img.selectTextFont("9x15B");
49  img.textOut(10, y, "Hello World! with font \"9x15B\"", TColor::white());
50  y += 20;
51 
52  img.selectTextFont("18x18ja");
53  img.textOut(10, y, "MRPTのフォントは易しいです!", TColor::white());
54  y += 20;
55 
56  img.selectTextFont("10x20");
57  img.textOut(10, y, "Hello World! with font \"10x20\"", TColor::white());
58  y += 20;
59 
60  CDisplayWindow win1("MRPT - Demo of text fonts render");
61  win1.setPos(10, 10);
62  win1.showImage(img);
63 
64  cout << "Push a key in the console or in the window to continue...";
65  win1.waitForKey();
66  cout << "Done" << endl;
67 }
68 
69 // ------------------------------------------------------
70 // MAIN
71 // ------------------------------------------------------
72 int main()
73 {
74  try
75  {
76  TestFonts();
77  return 0;
78  }
79  catch (const std::exception& e)
80  {
81  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
82  return -1;
83  }
84  catch (...)
85  {
86  printf("Untyped exception!!");
87  return -1;
88  }
89 }
STL namespace.
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
void TestFonts()
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
A RGB color - 8bit.
Definition: TColor.h:25
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020