KiCad PCB EDA Suite
Loading...
Searching...
No Matches
reference_image.h
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 The 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, see <https://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22#include <memory>
23
24#include <base_units.h>
25#include <core/mirror.h>
26#include <math/box2.h>
27#include <math/vector2d.h>
28
29class BITMAP_BASE;
30
31class wxMemoryBuffer;
32class wxImage;
33
39{
40public:
41 REFERENCE_IMAGE( const EDA_IU_SCALE& aIuScale );
42 REFERENCE_IMAGE( const REFERENCE_IMAGE& aOther );
44
46
47 bool operator==( const REFERENCE_IMAGE& aOther ) const;
48
49 double Similarity( const REFERENCE_IMAGE& aOther ) const;
50
51 BOX2I GetBoundingBox() const;
52
53 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) const;
54
55 VECTOR2I GetPosition() const;
56 void SetPosition( const VECTOR2I& aPos );
57
58 VECTOR2I GetSize() const;
59
66 double GetImageScale() const;
67
77 void SetImageScale( double aScale );
78
79 void SetWidth( int aWidth );
80 void SetHeight( int aHeight );
81
82 void Flip( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection );
83
84 void Rotate( const VECTOR2I& aCenter, const EDA_ANGLE& aAngle );
85
94 bool ReadImageFile( const wxString& aFullFilename );
95
104 bool ReadImageFile( wxMemoryBuffer& aBuf );
105
109 bool SetImage( const wxImage& aImage );
110
111 void PackToBytes( std::string& aOutputBytes ) const;
112 bool UnpackFromBytes( const std::string& aInputBytes );
113
114 void SwapData( REFERENCE_IMAGE& aItem );
115
121 const BITMAP_BASE& GetImage() const;
122
126 BITMAP_BASE& MutableImage() const;
127
128
133 void SetTransformOriginOffset( const VECTOR2I& aCenter );
134
135private:
136 void scaleBy( double ratio );
137
138 void updatePixelSizeInIU();
139
141
143
146
147 std::unique_ptr<BITMAP_BASE> m_bitmapBase;
148};
BOX2< VECTOR2I > BOX2I
Definition box2.h:918
This class handle bitmap images in KiCad.
Definition bitmap_base.h:45
BITMAP_BASE & MutableImage() const
Only use this if you really need to modify the underlying image.
const EDA_IU_SCALE & m_iuScale
void SwapData(REFERENCE_IMAGE &aItem)
VECTOR2I m_pos
XY coordinates of center of the bitmap.
void Rotate(const VECTOR2I &aCenter, const EDA_ANGLE &aAngle)
void SetTransformOriginOffset(const VECTOR2I &aCenter)
bool ReadImageFile(const wxString &aFullFilename)
Read and store an image file.
VECTOR2I GetTransformOriginOffset() const
Get the center of scaling, etc, relative to the image center (GetPosition()).
VECTOR2I GetPosition() const
void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection)
bool SetImage(const wxImage &aImage)
Set the image from an existing wxImage.
std::unique_ptr< BITMAP_BASE > m_bitmapBase
REFERENCE_IMAGE & operator=(const REFERENCE_IMAGE &aOther)
void SetHeight(int aHeight)
VECTOR2I GetSize() const
VECTOR2I m_transformOriginOffset
Center of scaling, etc, relative to the image center.
bool UnpackFromBytes(const std::string &aInputBytes)
void SetPosition(const VECTOR2I &aPos)
void SetWidth(int aWidth)
bool HitTest(const BOX2I &aRect, bool aContained, int aAccuracy) const
const BITMAP_BASE & GetImage() const
Get the underlying image.
double Similarity(const REFERENCE_IMAGE &aOther) const
double GetImageScale() const
void SetImageScale(double aScale)
Set the image "zoom" value.
REFERENCE_IMAGE(const EDA_IU_SCALE &aIuScale)
BOX2I GetBoundingBox() const
void scaleBy(double ratio)
void PackToBytes(std::string &aOutputBytes) const
bool operator==(const REFERENCE_IMAGE &aOther) const
FLIP_DIRECTION
Definition mirror.h:23
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683