mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
19 lines
No EOL
526 B
C++
19 lines
No EOL
526 B
C++
#pragma once
|
|
|
|
#include "image.h"
|
|
#include <functional>
|
|
|
|
namespace image
|
|
{
|
|
/*
|
|
Simple function to make a "matrix" out of many image to save them
|
|
in a single image.
|
|
|
|
You should ensure img_cnt is never 0 and does not exceed what
|
|
get_img_func can provide.
|
|
*/
|
|
Image make_manyimg_composite(int count_width, int count_height, int img_cnt, std::function<Image(int cnt)> get_img_func);
|
|
|
|
Image blend_images(std::vector<Image>& images);
|
|
Image merge_images_opacity(Image &img1, Image &img2, float op);
|
|
} |