Otclient  14/8/2020
apngloader.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef APNGLOADER_H
24 #define APNGLOADER_H
25 
26 #include <sstream>
27 
28 struct apng_data {
29  unsigned char *pdata;
30  unsigned int width;
31  unsigned int height;
32  unsigned int first_frame;
33  unsigned int last_frame;
34  unsigned char bpp;
35  unsigned char coltype;
36  unsigned int num_frames;
37  unsigned int num_plays;
38  unsigned short *frames_delay; // each frame delay in ms
39 };
40 
41 // returns -1 on error, 0 on success
42 int load_apng(std::stringstream& file, struct apng_data *apng);
43 void save_png(std::stringstream& file, unsigned int width, unsigned int height, int channels, unsigned char *pixels);
44 void free_apng(struct apng_data *apng);
45 
46 #endif
apng_data::last_frame
unsigned int last_frame
Definition: apngloader.h:33
apng_data::num_plays
unsigned int num_plays
Definition: apngloader.h:37
apng_data::height
unsigned int height
Definition: apngloader.h:31
apng_data::frames_delay
unsigned short * frames_delay
Definition: apngloader.h:38
apng_data::bpp
unsigned char bpp
Definition: apngloader.h:34
apng_data
Definition: apngloader.h:28
save_png
void save_png(std::stringstream &file, unsigned int width, unsigned int height, int channels, unsigned char *pixels)
Definition: apngloader.cpp:922
free_apng
void free_apng(struct apng_data *apng)
Definition: apngloader.cpp:1149
apng_data::first_frame
unsigned int first_frame
Definition: apngloader.h:32
apng_data::num_frames
unsigned int num_frames
Definition: apngloader.h:36
load_apng
int load_apng(std::stringstream &file, struct apng_data *apng)
Definition: apngloader.cpp:513
apng_data::pdata
unsigned char * pdata
Definition: apngloader.h:29
apng_data::coltype
unsigned char coltype
Definition: apngloader.h:35
apng_data::width
unsigned int width
Definition: apngloader.h:30