#include "l_bitmap.h"
L_LTFIL_API L_INT L_WriteFileTransforms(pszFile, pTransforms, nFlags, pSaveOptions)
Writes transforms to a FlashPix file.
Character string containing the FlashPix file name.
Pointer to a transform structure.
Flag used to determine how the image will be viewed. If nFlags is set, L_WriteFileTransforms will translate and/or scale the image so that the image will fall entirely within the view frame. These transformations will be incorporated into the affine matrix stored with the image. For example, if an image is rotated, as seen below, part of the image now falls outside the view frame. In this case, if nFlag is set, the image will be translated and scaled by L_WriteFileTransforms so that the entire image falls within the view frame. The translation and scaling are incorporated into the matrix stored with the image.
If nFlags is not set, the image would be appear as it does on the right, with part of the image "missing":
Pointer to optional extended save options. Pass NULL to use the default save options.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Note: Page number is specified in the SAVEFILEOPTION structure.
Also determines whether the image will be viewed "as is" when rotated, sheared or skewed, or whether the image will be translated and scaled such that the entire image may be viewed in its sheared, skewed or rotated state.
To load a FlashPix file with or without the transforms, see FlashPix Transforms Options.
For more information on transforms in general, refer to FILETRANSFORMS.
Required DLLs and Libraries
Win32, x64, Linux.
L_INT WriteFileTransformsExample(L_VOID)
{
L_INT nRet;
FILETRANSFORMS FileTransforms;
nRet = L_ReadFileTransforms (MAKE_IMAGE_PATH(TEXT("IMAGE1.FPX")), &FileTransforms, NULL);
if(nRet != SUCCESS)
return nRet;
//Increase the contrast by 20%
FileTransforms.fContrastAdjustment = FileTransforms.fContrastAdjustment * 1.2f;
nRet = L_WriteFileTransforms(MAKE_IMAGE_PATH(TEXT("IMAGE1.FPX")),&FileTransforms, FALSE, NULL);
if(nRet != SUCCESS)
return nRet;
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document