Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
gif.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-or-later
2//
3// Created by Michael Kowalski on 4/15/25.
4//
5
6#ifndef GIF_H
7#define GIF_H
8
10
11// GIF image exporter. It supports animated GIFs as well.
12// To create an animated GIF, prepare a document with multiple pages.
13// Export dialog "Pages" option can then be used to create an animated multiframe GIF.
14
16
18public:
19 void save(Output* mod, SPDocument* doc, char const* filename) override;
20
21 static void init();
22};
23
24}
25
26#endif //GIF_H
Base class for all implementations of modules.
void save(Output *mod, SPDocument *doc, char const *filename) override
Typed SVG document implementation.
Definition document.h:101