Documentation of SFML 2.6.1

Loading...
Searching...
No Matches
Image.hpp
1
2//
3// SFML - Simple and Fast Multimedia Library
4// Copyright (C) 2007-2023 Laurent Gomila (laurent@sfml-dev.org)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25#ifndef SFML_IMAGE_HPP
26#define SFML_IMAGE_HPP
27
29// Headers
31#include <SFML/Graphics/Export.hpp>
32#include <SFML/Graphics/Color.hpp>
33#include <SFML/Graphics/Rect.hpp>
34#include <string>
35#include <vector>
36
37
38namespace sf
39{
40class InputStream;
41
46class SFML_GRAPHICS_API Image
47{
48public:
49
57
63
72 void create(unsigned int width, unsigned int height, const Color& color = Color(0, 0, 0));
73
87 void create(unsigned int width, unsigned int height, const Uint8* pixels);
88
104 bool loadFromFile(const std::string& filename);
105
122 bool loadFromMemory(const void* data, std::size_t size);
123
140
156 bool saveToFile(const std::string& filename) const;
157
174 bool saveToMemory(std::vector<sf::Uint8>& output, const std::string& format) const;
175
183
195 void createMaskFromColor(const Color& color, Uint8 alpha = 0);
196
221 void copy(const Image& source, unsigned int destX, unsigned int destY, const IntRect& sourceRect = IntRect(0, 0, 0, 0), bool applyAlpha = false);
222
237 void setPixel(unsigned int x, unsigned int y, const Color& color);
238
254 Color getPixel(unsigned int x, unsigned int y) const;
255
269 const Uint8* getPixelsPtr() const;
270
276
282
283private:
284
286 // Member data
288 Vector2u m_size;
289 std::vector<Uint8> m_pixels;
290};
291
292} // namespace sf
293
294
295#endif // SFML_IMAGE_HPP
296
297
Utility class for manipulating RGBA colors.
Definition Color.hpp:41
Class for loading, manipulating and saving images.
Definition Image.hpp:47
~Image()
Destructor.
void create(unsigned int width, unsigned int height, const Uint8 *pixels)
Create the image from an array of pixels.
bool loadFromStream(InputStream &stream)
Load the image from a custom stream.
void createMaskFromColor(const Color &color, Uint8 alpha=0)
Create a transparency mask from a specified color-key.
void create(unsigned int width, unsigned int height, const Color &color=Color(0, 0, 0))
Create the image and fill it with a unique color.
const Uint8 * getPixelsPtr() const
Get a read-only pointer to the array of pixels.
bool saveToFile(const std::string &filename) const
Save the image to a file on disk.
void flipHorizontally()
Flip the image horizontally (left <-> right)
void flipVertically()
Flip the image vertically (top <-> bottom)
Vector2u getSize() const
Return the size (width and height) of the image.
bool loadFromFile(const std::string &filename)
Load the image from a file on disk.
void setPixel(unsigned int x, unsigned int y, const Color &color)
Change the color of a pixel.
bool loadFromMemory(const void *data, std::size_t size)
Load the image from a file in memory.
void copy(const Image &source, unsigned int destX, unsigned int destY, const IntRect &sourceRect=IntRect(0, 0, 0, 0), bool applyAlpha=false)
Copy pixels from another image onto this one.
Image()
Default constructor.
Color getPixel(unsigned int x, unsigned int y) const
Get the color of a pixel.
bool saveToMemory(std::vector< sf::Uint8 > &output, const std::string &format) const
Save the image to a buffer in memory.
Abstract class for custom file input streams.