summaryrefslogtreecommitdiff
path: root/src/AlienImage/AlienImage.cxx
blob: 0e61ee4e23414283995b4562d83e94f830443409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// File:        AlienImage.cxx
// Created:     21-OCT-1998
// Author:      DCB
// Copyright:   Matra Datavision 1998

#include <AlienImage.hxx>
#include <OSD_Path.hxx>
#include <OSD_File.hxx>
#include <OSD_Protection.hxx>
#include <OSD_Environment.hxx>

#include <Image_Image.hxx>
#include <AlienImage_AlienUserImage.hxx>
#include <AlienImage_XAlienImage.hxx>
#include <AlienImage_SGIRGBAlienImage.hxx>
#include <AlienImage_EuclidAlienImage.hxx>
#include <AlienImage_SunRFAlienImage.hxx>
#include <AlienImage_GIFAlienImage.hxx>
#include <AlienImage_BMPAlienImage.hxx>

//====================================================================
static OSD_Environment& _CSF_DefaultImageFormat() {
  static OSD_Environment CSF_DefaultImageFormat("CSF_DefaultImageFormat");
  return CSF_DefaultImageFormat;
}
#define CSF_DefaultImageFormat _CSF_DefaultImageFormat()

//====================================================================
Standard_Boolean AlienImage::CreateImage (const TCollection_AsciiString& theFileName,
                                          Handle(Image_Image)& theImage)
{
  OSD_File file = OSD_File (OSD_Path (theFileName));
  return AlienImage::CreateImage (file, theImage);
}

//====================================================================
Standard_Boolean AlienImage::CreateImage (const Standard_CString theFileName,
                                          Handle(Image_Image)& theImage)
{
  OSD_File file = OSD_File (OSD_Path (TCollection_AsciiString (theFileName)));
  return AlienImage::CreateImage (file, theImage);
}

//====================================================================
Standard_Boolean AlienImage::CreateImage (OSD_File& theFile,
                                          Handle(Image_Image)& theImage)
{
  OSD_Protection          theProtection (OSD_R, OSD_R, OSD_R, OSD_R);
  OSD_Path                thePath;
  theFile.Path            (thePath);
  TCollection_AsciiString theExtension  = thePath.Extension();
  theExtension.UpperCase  ();

  Handle(AlienImage_AlienUserImage) theAlienImage;

  theFile.Open (OSD_ReadOnly, theProtection);
  if (theFile.IsOpen()) {
    if (theExtension.IsEqual (".XWD"))
_CreateXWD:
      theAlienImage = new AlienImage_XAlienImage ();
    else if (theExtension.IsEqual (".RGB"))
_CreateRGB:
      theAlienImage = new AlienImage_SGIRGBAlienImage ();
    else if (theExtension.IsEqual (".RS"))
_CreateRS:
      theAlienImage = new AlienImage_SunRFAlienImage ();
    else if (theExtension.IsEqual (".PIX"))
_CreatePIX:
      theAlienImage = new AlienImage_EuclidAlienImage ();
    else if (theExtension.IsEqual (".GIF"))
_CreateGIF:
      theAlienImage = new AlienImage_GIFAlienImage ();
    else if (theExtension.IsEqual (".BMP"))
_CreateBMP:
      theAlienImage = new AlienImage_BMPAlienImage ();

    else if (theExtension.IsEmpty ()) {
      // Trye to read $CSF_DefaultImageFormat environment
      TCollection_AsciiString theDefExt = CSF_DefaultImageFormat.Value();
      theDefExt.Prepend (".");
      thePath.SetExtension (theDefExt);
      theExtension = theDefExt;
      theExtension.UpperCase ();
      if      (theExtension.IsEqual (".XWD")) goto _CreateXWD;
      else if (theExtension.IsEqual (".RGB")) goto _CreateRGB;
      else if (theExtension.IsEqual (".RS"))  goto _CreateRS;
      else if (theExtension.IsEqual (".PIX")) goto _CreatePIX;
      else if (theExtension.IsEqual (".GIF")) goto _CreateGIF;
      else if (theExtension.IsEqual (".BMP")) goto _CreateBMP;
      else                                    return Standard_False;
    } else {
      return Standard_False;
    }

    if (!theAlienImage -> Read (theFile)) {
      theFile.Close ();
      return Standard_False;
    }

    theImage = theAlienImage -> ToImage ();
    theFile.Close ();
    return (!theImage.IsNull());
  }
  return Standard_False;
}

//====================================================================
Standard_Boolean AlienImage::LoadImageFile(const Standard_CString anImageFile,
                                           Handle(Image_Image)& myImage,
                                           Standard_Integer& aWidth,
                                           Standard_Integer& aHeight)
{
  // Try to load new image
  myImage.Nullify ();
  if (AlienImage::CreateImage (anImageFile, myImage)) {
    // New image loaded
//_ExitOK:
    aWidth  = myImage -> Width ();
    aHeight = myImage -> Height ();
    return Standard_True;
  } else {
    // Could not load new image
//_ExitError:
    myImage.Nullify ();
    aWidth = aHeight = 0;
    return Standard_False;
  }
}