KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_bitmap_base.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2023 KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
30
31// Code under test
32#include <bitmap_base.h>
33
34#include "wximage_test_utils.h"
35
36#include <wx/mstream.h>
37
38
39// Dummy PNG image 8x8, 4 tiles:
40//
41// green, black,
42// red, blue
43// (the black tile is a circle, otherwise older wx's seem to crash)
44static const std::vector<unsigned char> png_data_4tile = { //
45 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52,
46 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x08, 0x08, 0x06, 0x00, 0x00, 0x00, 0xC4, 0x0F, 0xBE,
47 0x8B, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49, 0x54, 0x08, 0x08, 0x08, 0x08, 0x7C, 0x08, 0x64,
48 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0E, 0xC4, 0x00, 0x00, 0x0E,
49 0xC4, 0x01, 0x95, 0x2B, 0x0E, 0x1B, 0x00, 0x00, 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6F,
50 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77, 0x77, 0x77, 0x2E, 0x69, 0x6E, 0x6B, 0x73, 0x63,
51 0x61, 0x70, 0x65, 0x2E, 0x6F, 0x72, 0x67, 0x9B, 0xEE, 0x3C, 0x1A, 0x00, 0x00, 0x00, 0x40, 0x49,
52 0x44, 0x41, 0x54, 0x18, 0x95, 0xA5, 0xCD, 0x4B, 0x0A, 0xC0, 0x20, 0x14, 0x43, 0xD1, 0x63, 0x77,
53 0xA7, 0xDD, 0xFF, 0x06, 0xD4, 0x7D, 0x3C, 0x07, 0x95, 0x42, 0x3F, 0xE0, 0xC0, 0x84, 0x0C, 0x02,
54 0xE1, 0x86, 0x78, 0x99, 0x13, 0x1D, 0x0D, 0xC5, 0xCF, 0xA0, 0x21, 0x66, 0xEA, 0x61, 0xA9, 0x2F,
55 0xA1, 0x4C, 0x4A, 0x45, 0x4E, 0x71, 0xA1, 0x6E, 0xA5, 0x67, 0xB5, 0xBC, 0xD8, 0x1F, 0x0C, 0xA7,
56 0xFD, 0x23, 0x67, 0x70, 0xDA, 0x89, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE,
57 0x42, 0x60, 0x82
58};
59
61static const VECTOR2I size_4tile{ 8, 8 };
62
63static const KIGFX::COLOR4D col_red{ 1.0, 0.0, 0.0, 1.0 };
64static const KIGFX::COLOR4D col_green{ 0.0, 1.0, 0.0, 1.0 };
65static const KIGFX::COLOR4D col_blue{ 0.0, 0.0, 1.0, 1.0 };
66static const KIGFX::COLOR4D col_black{ 0.0, 0.0, 0.0, 1.0 };
67
68
70{
71public:
73 {
74 wxMemoryInputStream mis( png_data_4tile.data(), png_data_4tile.size() );
75
76 bool ok = m_4tile.ReadImageFile( mis );
77
78 // this is needed for most tests and can fail if the image handlers
79 // are not initialised (e.g. with wxInitAllImageHandlers)
80 BOOST_REQUIRE( ok );
81
82 // use an easier scale for test purposes
84 m_4tile.SetScale( 5.0 );
85 }
86
87 /*
88 * Simple image of 4 coloured tiles
89 */
91};
92
93
97BOOST_FIXTURE_TEST_SUITE( BitmapBase, TEST_BITMAP_BASE_FIXTURE )
98
99
100
104{
106 // Const to test we can get this data from a const object
107 const BITMAP_BASE& cempty = empty;
108 const int expected_ppi = 300;
109
110 BOOST_CHECK_EQUAL( cempty.GetImageData(), nullptr );
111 BOOST_CHECK_EQUAL( cempty.GetPPI(), expected_ppi );
112 BOOST_CHECK_EQUAL( cempty.GetScale(), 1.0 );
113 BOOST_CHECK_EQUAL( cempty.GetPixelSizeIu(), 254000.0 / expected_ppi );
114
115 // can do this on an empty image
116 empty.Rotate( true );
117 empty.Mirror( true );
118}
119
120
125{
127 BITMAP_BASE copied = empty;
128
129 // should still have nothing in it
130 BOOST_CHECK_EQUAL( copied.GetImageData(), nullptr );
131}
132
133
135{
136 int m_x;
137 int m_y;
139};
140
141
146{
147 // make sure we can do all this to a const img
148 const BITMAP_BASE& img = m_4tile;
149
150 // have "some" image data
151 BOOST_REQUIRE_NE( img.GetImageData(), nullptr );
152
153 // still default props here
154 const int expected_ppi = 94;
155 BOOST_CHECK_EQUAL( img.GetPPI(), expected_ppi );
156 BOOST_CHECK_EQUAL( img.GetScale(), 5.0 );
157
158 // we changed this, make sure it's right
159 BOOST_CHECK_EQUAL( img.GetPixelSizeIu(), 2.0 );
160
162 BOOST_CHECK( img.GetSize() == size_4tile * 10 );
163
164 const BOX2I bb = img.GetBoundingBox();
165 BOOST_CHECK( bb.GetPosition() == VECTOR2I( -40, -40 ) );
166 BOOST_CHECK( bb.GetEnd() == VECTOR2I( 40, 40 ) );
167}
168
169
174{
175 const wxImage* img_data = m_4tile.GetImageData();
176 BOOST_REQUIRE_NE( img_data, nullptr );
177
178 // green, black,
179 // red, blue
180 const std::vector<TEST_PIXEL_CASE> exp_pixels = {
181 { 1, 1, col_green },
182 { 6, 1, col_black },
183 { 1, 6, col_red },
184 { 6, 6, col_blue },
185 };
186
187 for( const auto& c : exp_pixels )
188 {
189 BOOST_CHECK_PREDICATE(
190 KI_TEST::IsImagePixelOfColor, ( *img_data )( c.m_x )( c.m_y )( c.m_color ) );
191 }
192}
193
198{
199 // Note the parameter name is wrong here, true is clockwise
200 m_4tile.Rotate( false );
201
202 const wxImage* img_data = m_4tile.GetImageData();
203 BOOST_REQUIRE_NE( img_data, nullptr );
204
205 // black, blue,
206 // green, red
207 const std::vector<TEST_PIXEL_CASE> exp_pixels = {
208 { 1, 1, col_black },
209 { 6, 1, col_blue },
210 { 1, 6, col_green },
211 { 6, 6, col_red },
212 };
213
214 for( const auto& c : exp_pixels )
215 {
216 BOOST_CHECK_PREDICATE(
217 KI_TEST::IsImagePixelOfColor, ( *img_data )( c.m_x )( c.m_y )( c.m_color ) );
218 }
219}
220
225{
226 m_4tile.Mirror( true );
227
228 const wxImage* img_data = m_4tile.GetImageData();
229 BOOST_REQUIRE_NE( img_data, nullptr );
230
231 // red, blue
232 // green, black
233 const std::vector<TEST_PIXEL_CASE> exp_pixels = {
234 { 1, 1, col_red },
235 { 6, 1, col_blue },
236 { 1, 6, col_green },
237 { 6, 6, col_black },
238 };
239
240 for( const auto& c : exp_pixels )
241 {
242 BOOST_CHECK_PREDICATE(
243 KI_TEST::IsImagePixelOfColor, ( *img_data )( c.m_x )( c.m_y )( c.m_color ) );
244 }
245}
246
247BOOST_AUTO_TEST_SUITE_END()
This class handle bitmap images in KiCad.
Definition: bitmap_base.h:48
VECTOR2I GetSizePixels() const
Definition: bitmap_base.h:106
const BOX2I GetBoundingBox() const
Return the orthogonal, bounding box of this object for display purposes.
double GetPixelSizeIu() const
Definition: bitmap_base.h:64
double GetScale() const
Definition: bitmap_base.h:72
void SetPixelSizeIu(double aPixSize)
Definition: bitmap_base.h:65
bool ReadImageFile(const wxString &aFullFilename)
Reads and stores in memory an image file.
int GetPPI() const
Definition: bitmap_base.h:117
wxImage * GetImageData()
Definition: bitmap_base.h:67
VECTOR2I GetSize() const
void SetScale(double aScale)
Definition: bitmap_base.h:73
const Vec & GetPosition() const
Definition: box2.h:201
const Vec GetEnd() const
Definition: box2.h:202
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
static bool empty(const wxTextEntryBase *aCtrl)
bool IsImagePixelOfColor(const wxImage &aImage, int aX, int aY, const KIGFX::COLOR4D &aColor)
Predicate to check an image pixel matches color and alpha.
KIGFX::COLOR4D m_color
static const KIGFX::COLOR4D col_blue
BOOST_AUTO_TEST_CASE(Empty)
Declare the test suite.
static const VECTOR2I size_4tile
static const KIGFX::COLOR4D col_red
static const KIGFX::COLOR4D col_green
static const std::vector< unsigned char > png_data_4tile
4tile is an 8x8 image
static const KIGFX::COLOR4D col_black
BOOST_CHECK(box.ClosestPointTo(VECTOR2D(0, 0))==VECTOR2D(1, 2))
Test suite for KiCad math code.