Panda3D
Loading...
Searching...
No Matches
imageFilter.h
Go to the documentation of this file.
1/**
2 * PANDA 3D SOFTWARE
3 * Copyright (c) Carnegie Mellon University. All rights reserved.
4 *
5 * All use of this software is subject to the terms of the revised BSD
6 * license. You should have received a copy of this license along
7 * with this source code in a file named "LICENSE."
8 *
9 * @file imageFilter.h
10 * @author drose
11 * @date 2000-06-19
12 */
13
14#ifndef IMAGEFILTER_H
15#define IMAGEFILTER_H
16
17#include "pandatoolbase.h"
18
19#include "imageReader.h"
20#include "imageWriter.h"
21
22/**
23 * This is the base class for a program that reads an image file, operates on
24 * it, and writes another image file out.
25 */
26class ImageFilter : public ImageReader, public ImageWriter {
27public:
28 ImageFilter(bool allow_last_param);
29
30protected:
31 virtual bool handle_args(Args &args);
32};
33
34#endif
This is the base class for a program that reads an image file, operates on it, and writes another ima...
Definition imageFilter.h:26
This is the base class for a program that reads an image file, but doesn't write an image file.
Definition imageReader.h:25
This is the base class for a program that generates an image file output, but doesn't read any for in...
Definition imageWriter.h:27
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.