Logo ROOT  
Reference Guide
TASPluginGS.h
Go to the documentation of this file.
1// @(#)root/graf:$Id$
2// Author: Valeriy Onuchin 23/06/05
3
4/*************************************************************************
5 * Copyright (C) 2001-2002, Rene Brun, Fons Rademakers *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TASPluginGS
13#define ROOT_TASPluginGS
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TASPluginGS //
19// //
20//////////////////////////////////////////////////////////////////////////
21
22#include "TASImagePlugin.h"
23
24
26
27private:
28 char *fInterpreter; ///< path to GhostScript interpreter
29
30public:
31 TASPluginGS(const char *ext);
32 virtual ~TASPluginGS();
33
34 ASImage *File2ASImage(const char *filename);
35
36 ClassDef(TASPluginGS, 0) // PS/EPS/PDF plugin based on GhostScript interpreter
37};
38
39#endif
#define ClassDef(name, id)
Definition: Rtypes.h:322
Allows to read PS/EPS/PDF files via GhostScript.
Definition: TASPluginGS.h:25
char * fInterpreter
path to GhostScript interpreter
Definition: TASPluginGS.h:28
TASPluginGS(const char *ext)
ctor
Definition: TASPluginGS.cxx:48
ASImage * File2ASImage(const char *filename)
read PS/EPS/PDF file and convert it to ASImage
Definition: TASPluginGS.cxx:74
virtual ~TASPluginGS()
dtor
Definition: TASPluginGS.cxx:65