1 //
2 // SPDX-License-Identifier: BSD-3-Clause
3 // Copyright (c) Contributors to the OpenEXR Project.
4 //
5 
6 #ifndef INCLUDED_MAKE_PREVIEW_H
7 #define INCLUDED_MAKE_PREVIEW_H
8 
9 //----------------------------------------------------------------------------
10 //
11 //	Add a preview image to an OpenEXR file.
12 //
13 //----------------------------------------------------------------------------
14 
15 
16 void	makePreview (const char inFileName[],
17 	             const char outFileName[],
18 		     int previewWidth,
19 		     float exposure,
20 		     bool verbose);
21 
22 
23 #endif
24