mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 18:23:15 +02:00
The m_imageData buffer in the BITMAP_BASE is an internal implementation - the public API to persist the data to a stream appears to be SaveImageData - so use that, which hides the implementation (and generates the image data "live" when needed). Remove the public access to the m_imageData buffer as it isn't needed for public use, and also is misleading. Also break out the formatting of the data into KICAD_FORMAT, as it's currently replicated in eeschema/pcb/pagelayout formatting code. Fixes: https://gitlab.com/kicad/code/kicad/-/issues/19772
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright The KiCad Developers, see AUTHORS.TXT for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef QA_COMMON_WXIMAGE_TEST_UTILS__H
|
|
#define QA_COMMON_WXIMAGE_TEST_UTILS__H
|
|
|
|
#include <qa_utils/wx_utils/unit_test_utils.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <gal/color4d.h>
|
|
|
|
namespace KI_TEST
|
|
{
|
|
/**
|
|
* Predicate to check an image pixel matches color and alpha
|
|
*
|
|
* @param aImage the image to check
|
|
* @param aX pixel x-coordinate
|
|
* @param aY pixel y-coordinate
|
|
* @param aColor expected color (alpha is 1.0 if image doesn't support alpha)
|
|
* @return true if colour match
|
|
*/
|
|
bool IsImagePixelOfColor( const wxImage& aImage, int aX, int aY, const KIGFX::COLOR4D& aColor );
|
|
|
|
/**
|
|
* Check if an image is identical to another image, pixel by pixel
|
|
*
|
|
* (this is exhaustive, avoid using it for large images)
|
|
*/
|
|
bool ImagesHaveSamePixels( const wxImage& aImgA, const wxImage& aImgB );
|
|
|
|
} // namespace KI_TEST
|
|
|
|
|
|
std::ostream& boost_test_print_type( std::ostream& os, wxImage const& aImage );
|
|
|
|
#endif
|