Files
pymol-open-source/layer1/ImageUtils.h
2025-01-04 21:08:08 -05:00

16 lines
356 B
C

#pragma once
#include "Image.h"
#include "Result.h"
struct PyMOLGlobals;
/**
* @brief Composites an image with an overlay
* @param image the base image
* @param overlay the overlay image
* @return the composited image
*/
pymol::Result<pymol::Image> PyMOLImageComposite(
PyMOLGlobals* G, const pymol::Image& image, const pymol::Image& overlay);