LFile::SaveBitmapWithLayers

#include "ltwrappr.h"

virtual L_INT LFile::SaveBitmapWithLayers(nFormat, nBitsPerPixel, nQFactor, pLayers, pLayerInfo=NULL, nLayers=0, pSaveOptions=NULL)

L_INT nFormat;

/* output file format */

L_INT nBitsPerPixel;

/* resulting file's pixel depth */

L_INT nQFactor;

/* quality factor */

LBitmapList pLayers;

/* handle to an LBitmapList object */

pLAYERINFO pLayerInfo;

/* pointer to a structure */

L_INT nLayers;

/* number of layers in pLayerInfo */

pSAVEFILEOPTION pSaveOptions;

/* pointer to optional extended save options */

Saves the class object's associated bitmap to a file, along with the specified layers.

Parameter

Description

nFormat

Output file format. Currently, only PSD (FILE_PSD) files support layers.

nBitsPerPixel

Resulting file's pixel depth. For color images this can be 24 or 32. For grayscale images, this can be 8.

nQFactor

Reserved for future use. Pass 0.

pLayers

Pointer to an LBitmapList object that contains the layers to save in the output file. The layers should have the same bits per pixel as the file. Every bitmap in the list will be saved as a layer. The first bitmap in the list will be interpreted as the first layer. The bitmaps in the bitmap list must have the same bits per pixel as specified in nBitsPerPixel.

pLayerInfo

Pointer to an optional array of LAYERINFO structures. If this is NULL, then each layer will start at (0, 0) and will have the same size as the image. If this is not NULL, then the layer information for each layer in hLayers will be stored here. The number of LAYERINFO structures is given in nLayers.

nLayers

The number of LAYERINFO structures in the pLayerInfo array. This value should be the same as the number of bitmaps in the hLayers bitmap list. This parameter is used only if pLayerInfo is not NULL.

pSaveOptions

Pointer to optional extended save options. Pass NULL to use the default save options.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Currently, only the PSD format supports layers.

This function supports signed data images, but only DICOM and TIFF formats support signed data. This function will return an error code if you attempt to save a signed image to a format other than DICOM or TIFF.

If the bitmap has a region, the region stored in the bitmap will be saved, if the image is saved as one of the TIFF file formats.

Required DLLs and Libraries

LTFIL
File format DLLs

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LFile::LoadLayer, LFile::SaveBitmap, LFile::SaveFile, LFile::SaveOffset, LFile::FileConvert, LFileSettings::SetComment, LDialogFile::DoModalSave, Class Members

Topics:

Raster Image Functions: Saving Files

 

Loading and Saving Images

Example

L_VOID TestFunction(L_TCHAR * pszOutFile, L_TCHAR * pszFile,
L_TCHAR * pszLayers[], L_INT nLayers)
{
   
LBitmapBase Bitmap;
   
LBitmapList Layers;
   
LFile File;

   
Layers.Create();

   
for (L_INT i = 0; i < nLayers; i++)
   
{
      
Bitmap.Load(pszLayers[i]);
      
Layers.InsertItem(&Bitmap);
   
}

   
Bitmap.Load(pszFile);
   
File.SetFileName(pszOutFile);
   
File.SetBitmap(&Bitmap);

   
File.SaveBitmapWithLayers(FILE_PSD, 0, 0, &Layers);
}