5.7. Images

Figure 5.30. Image node class


The image node, SoImage( C++ | Java | .NET ) , defines an image that will be rendered as a 2D screen-aligned image. The two-dimensional image is independent of camera rotation and does not scale in size depending on changes in distance from the camera.

SoImage( C++ | Java | .NET ) has the following fields:

filename (SoSFString)

Specifies the file from which to read the image. See your release documentation for information on the file formats supported on your system. If the filename is not an absolute path name, the list of directories maintained by SoInput( C++ | Java | .NET )is searched. If the image file is not found in any of those directories, then the file is searched for relative to the directory from which the SoImage( C++ | Java | .NET ) node was read. For example, if an SoImage( C++ | Java | .NET ) node with a filename of “../tofu.rgb” is read from /usr/people/bob/models/food.iv, then /usr/people/bob/tofu.rgb will be read (assuming tofu.rgb isn’t found in the directories maintained by SoInput( C++ | Java | .NET )).

image (SoSFImage)

Contains an in-memory representation of the image. It is either the contents of the file read from filename, an image read directly from an Inventor file, or an image set programmatically using the methods provided by SoSFImage( C++ | Java | .NET ) . For more information about the storage of the image, read the paragraph the section called “Storing an Image (Advanced) of The Inventor Mentor.

horAlignment (SoSFEnum)
vertAlignment (SoSFEnum)

Horizontal and vertical alignment relative to the image origin.

width (SoSFInt32)
height (SoSFInt32)

Specifies the width and the height of the image in pixels in order to magnify or reduce it. If one these values is equal to -1, the original size (width or height) of the image is used. For instance if width = 256 and height = -1, and the original size is 128x128 pixels, the resulting size will be 256 for the width and 128 for the height.

The image origin is positioned at (0,0,0), transformed by the current geometric transformation. The image is drawn relative to the image origin, according to the specified vertical and horizontal alignment.

[Note]

Furthermore, although texturing is ignored by the HardCopy extension, this node may be used for correct printing of scenes containing logos or images.



SoRasterImageRW( C++ | Java | .NET ) allows you to read and write image buffers from/to a file. Subclasses are derived from this abstract class to support common graphic file formats such as BMP, DDS, GIF, JPEG2000, JPEG, PGX, PNG, PostScript, SGI (RGBA), RAS (Sun Raster), and TIFF. These classes dynamically load the format-specific libraries (libJPEG, libTIFF, libPNG...) only when needed.

Depending on the library capabilities, large images are written using tiles two different ways: WRITE_SCANLINES or WRITE_FULL_IMAGE. For the WRITE_SCANLINES formats, the image can be written incrementally, some number of scanlines at a time. Therefore it is only necessary to allocate enough memory for a single tile, which at most will be the size of the maximum OpenGL viewport (typically 2048x2048). If it is WRITE_FULL_IMAGE, the whole image buffer must be allocated and tiles are copied into it; this is less efficient and requires more memory.

All of the classes dealing with image I/O in Open Inventor and its modules use this set of classes to read or write graphics files (SoImage( C++ | Java | .NET ), SoTexture2( C++ | Java | .NET )...) You can also create your own graphic file format import/export by deriving a subclass from SoRasterImageRW( C++ | Java | .NET ) and implementing or overloading its methods:


C++
SbBool open(SoRasterImageIO* rasterImageIO, OpenMode openMode)
void close()
SbBool write(SbRasterImage* rasterImage, unsigned int xPos=0, unsigned int yPos=0)
SbBool writeHeader(SbVec2s& size)
SbBool writeFooter()
SbBool read(SbRasterImage* rasterImage, SbBool infoOnly = FALSE)
        

.NET
          
        

Java
boolean open(SoRasterImageIO rasterImageIO, OpenModes openMode)
void close()
boolean write(SbRasterImage rasterImage, int xPos, int yPos)
boolean writeHeader(SbVec2s size)
boolean writeHeader(SbVec2i32 size)
boolean writeFooter()
boolean read(SbRasterImage rasterImage, boolean infoOnly)

An example program in the distribution shows how to create your own graphics file reader/writer (PPM format). It can be found at: $OIVHOME/Inventor/examples/Features/RasterRW.