123456789101112131415161718192021222324252627282930313233 |
- #ifndef LIBALMOND_IMAGEEXPORT_H
- #define LIBALMOND_IMAGEEXPORT_H
- #include "Mandel.h"
- #include "Gradient.h"
- #include <functional>
- namespace alm
- {
- struct ImageExportInfo
- {
- mnd::MandelInfo drawInfo;
- mnd::MandelGenerator* generator;
- Gradient gradient;
- std::string path;
- };
-
- void exportPng(const ImageExportInfo& iei,
- std::function<void(float)> progressCallback = [](float){});
- }
- #endif
|