Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
imgconv.C File Reference

Detailed Description

View in nbviewer Open in SWAN
Open rose512.jpg and save it in the following formats: .png, .gif, .xpm and tiff.

void imgconv()
{
TImage *img = TImage::Open("$ROOTSYS/tutorials/visualisation/image/rose512.jpg");
if (!img) {
printf("Could not create an image... exit\n");
return;
}
img->WriteImage("rose512.png");
img->WriteImage("rose512.gif");
img->WriteImage("rose512.xpm");
img->WriteImage("rose512.tiff");
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
An abstract interface to image processing library.
Definition TImage.h:29
static TImage * Open(const char *file, EImageFileTypes type=kUnknown)
Open a specified image file.
Definition TImage.cxx:118
Author
Valeriy Onuchin

Definition in file imgconv.C.