10 lines
180 B
C
10 lines
180 B
C
#pragma once
|
|
#ifndef IMAGEEXPORT_H
|
|
#define IMAGEEXPORT_H
|
|
|
|
#include <QImage>
|
|
#include <QString>
|
|
|
|
void exportIndexed4BPPPng(QImage image, QString filepath);
|
|
|
|
#endif // IMAGEEXPORT_H
|