LDicomDS::SetKeepPixelDataIntactFlag

Summary

Enables or disables the pre-processing of image data when a function that gets a bitmap from a Pixel Data element is called.

Syntax

#include "Ltdic.h"

L_VOID LDicomDS::SetKeepPixelDataIntactFlag(bSet)

Parameters

L_BOOL bSet

Flag the indicates whether to enable or disable the pre-processing of image data when a function that gets a bitmap from a Pixel Data element is called. Possible values are:

Value Meaning
TRUE Do not pre-process the image data.
FALSE Pre-process the image data.

Returns

None.

Comments

When a function that gets a bitmap from a data set is called, such as LDicomDS::GetImage or LDicomDS::GetImageList, LEADTOOLS may pre-process the image data in the bitmap handle for optimal display. Call the LDicomDS::GetKeepPixelDataIntactFlag function to determine whether LEADTOOLS will pre-process the image data. By default LEADTOOLS pre-processes the image data.

Calling the LDicomDS::SetKeepPixelDataIntactFlag function with bSet set to TRUE stops LEADTOOLS from pre-processing the image data in the bitmap handle.

NOTE: This may result in unexpected behavior when a LEADTOOLS display or image processing function is called for that bitmap handle.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomDS_SetKeepPixelDataIntactFlagExample() 
{ 
   L_INT          nRet; 
   LDicomDS      *pDS; 
   pDICOMELEMENT  pElement; 
   BITMAPHANDLE   Bitmap; 
   L_BOOL         bKeepPixelDataUnchanged; 
 
   pDS = new LDicomDS(NULL); 
 
   nRet = pDS->LoadDS(MAKE_IMAGE_PATH(TEXT("image1.dcm")), 0); 
   if(nRet != DICOM_SUCCESS) 
      return nRet; 
 
   bKeepPixelDataUnchanged = pDS->GetKeepPixelDataIntactFlag(); 
   if(bKeepPixelDataUnchanged == FALSE) 
   { 
      L_INT nRet = AfxMessageBox(TEXT("Would like to keep pixel data unchanged?"), MB_YESNO); 
      pDS->SetKeepPixelDataIntactFlag((nRet == IDYES)); 
   } 
 
   pElement = pDS->FindFirstElement(NULL, TAG_PIXEL_DATA, FALSE); 
   if (pElement != NULL) 
   { 
      nRet = pDS->GetImage(pElement, &Bitmap, sizeof(BITMAPHANDLE), 0, 0, 0, NULL, NULL); 
      if(nRet != DICOM_SUCCESS) 
         return nRet; 
      L_FreeBitmap(&Bitmap); 
   } 
 
   delete pDS; 
 
   return DICOM_SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.