mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
16 lines
356 B
C
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);
|