ROOT  6.06/09
Reference Guide
TImageDump.h
Go to the documentation of this file.
1 // @(#)root/postscript:$Id$
2 // Author: Valeriy Onuchin 29/04/2005
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and 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_TImageDump
13 #define ROOT_TImageDump
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TImageDump //
19 // //
20 // save canvas in an image in batch mode //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 
25 #ifndef ROOT_TVirtualPS
26 #include "TVirtualPS.h"
27 #endif
28 
29 class TImage;
30 class TColor;
31 class TPoint;
32 
33 class TImageDump : public TVirtualPS {
34 protected:
35  TImage *fImage; // image
36  Int_t fType; // PostScript workstation type
37 
40  void DrawDashPolyLine(Int_t npoints, TPoint *pt, UInt_t nDash,
41  const char* pDash, const char* col, UInt_t thick);
42 
43 public:
44  TImageDump();
45  TImageDump(const char *filename, Int_t type = -111);
46  virtual ~TImageDump();
47 
49  void CellArrayFill(Int_t r, Int_t g, Int_t b);
50  void CellArrayEnd();
51  void Close(Option_t *opt = "");
53  void DrawFrame(Double_t xl, Double_t yl, Double_t xt, Double_t yt,
54  Int_t mode, Int_t border, Int_t dark, Int_t light);
57  void DrawPS(Int_t n, Float_t *xw, Float_t *yw);
58  void DrawPS(Int_t n, Double_t *xw, Double_t *yw);
59  void NewPage();
60  void Open(const char *filename, Int_t type = -111);
61  void Text(Double_t x, Double_t y, const char *string);
62  void Text(Double_t x, Double_t y, const wchar_t *string);
63  void SetColor(Float_t r, Float_t g, Float_t b);
64  void *GetStream() const { return (void*)fImage; }
65  void SetType(Int_t type = -111) { fType = type; }
66  Int_t GetType() const { return fType; }
67  TImage *GetImage() const { return fImage; }
68 
69  ClassDef(TImageDump,0) // create image in batch mode
70 };
71 
72 #endif
void DrawDashPolyLine(Int_t npoints, TPoint *pt, UInt_t nDash, const char *pDash, const char *col, UInt_t thick)
draw dashed polyline
Definition: TImageDump.cxx:621
void CellArrayBegin(Int_t W, Int_t H, Double_t x1, Double_t x2, Double_t y1, Double_t y2)
cell array begin
Definition: TImageDump.cxx:714
void CellArrayEnd()
Cell array end.
Definition: TImageDump.cxx:756
void Close(Option_t *opt="")
Close a image file.
Definition: TImageDump.cxx:107
TImage * fImage
Definition: TImageDump.h:35
float Float_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:62
TImage * GetImage() const
Definition: TImageDump.h:67
static const char * filename()
#define H(x, y, z)
void Text(Double_t x, Double_t y, const char *string)
Draw text.
Definition: TImageDump.cxx:659
int Int_t
Definition: RtypesCore.h:41
void SetType(Int_t type=-111)
Definition: TImageDump.h:65
An abstract interface to image processing library.
Definition: TImage.h:45
Int_t GetType() const
Definition: TImageDump.h:66
static const double x2[5]
Double_t x[n]
Definition: legend1.C:17
void NewPage()
new page
Definition: TImageDump.cxx:643
void DrawPS(Int_t n, Float_t *xw, Float_t *yw)
not used
Definition: TImageDump.cxx:611
ClassDef(TAttLine, 2)
void * GetStream() const
Definition: TImageDump.h:64
void SetColor(Float_t r, Float_t g, Float_t b)
Set color with its R G B components.
Definition: TImageDump.cxx:786
Definition: TPoint.h:33
Int_t XtoPixel(Double_t x)
x to pixel
Definition: TImageDump.cxx:793
TPaveText * pt
ROOT::R::TRInterface & r
Definition: Object.C:4
unsigned int UInt_t
Definition: RtypesCore.h:42
virtual ~TImageDump()
destructor
Definition: TImageDump.cxx:94
Save canvas as an image (GIF, JPEG, PNG, XPM, TIFF etc.).
Definition: TImageDump.h:33
Int_t fType
Definition: TImageDump.h:36
void DrawFrame(Double_t xl, Double_t yl, Double_t xt, Double_t yt, Int_t mode, Int_t border, Int_t dark, Int_t light)
Draw a Frame around a box.
Definition: TImageDump.cxx:195
void Open(const char *filename, Int_t type=-111)
Open a image file.
Definition: TImageDump.cxx:83
static const double x1[5]
double Double_t
Definition: RtypesCore.h:55
void DrawPolyMarker(Int_t n, Float_t *x, Float_t *y)
not used
Definition: TImageDump.cxx:276
int type
Definition: TGX11.cxx:120
Double_t y[n]
Definition: legend1.C:17
The color creation and management class.
Definition: TColor.h:23
TVirtualPS is an abstract interface to Postscript, PDF, SVG.
Definition: TVirtualPS.h:40
Int_t YtoPixel(Double_t y)
y to pixel
Definition: TImageDump.cxx:801
const Int_t n
Definition: legend1.C:16
void CellArrayFill(Int_t r, Int_t g, Int_t b)
Cell array fill.
Definition: TImageDump.cxx:743
void DrawBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw a Box.
Definition: TImageDump.cxx:121