blob: 58ebbbbc305784cfe7a55a85905cafef6b40fdf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2013 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_TRACE_IMAGEMAP_GDK_H
#define INKSCAPE_TRACE_IMAGEMAP_GDK_H
#include <gdkmm/pixbuf.h>
#include "imagemap.h"
namespace Inkscape {
namespace Trace {
GrayMap gdkPixbufToGrayMap(Glib::RefPtr<Gdk::Pixbuf> const &);
Glib::RefPtr<Gdk::Pixbuf> grayMapToGdkPixbuf(GrayMap const &);
RgbMap gdkPixbufToRgbMap(Glib::RefPtr<Gdk::Pixbuf> const &);
Glib::RefPtr<Gdk::Pixbuf> indexedMapToGdkPixbuf(IndexedMap const &);
} // namespace Trace
} // namespace Inkscape
#endif // INKSCAPE_TRACE_IMAGEMAP_GDK_H
|