LFile::DeleteTag

Summary

Deletes a tag from a file, if the file supports tags (TIFF or Exif).

Syntax

#include "ltwrappr.h"

L_INT LFile::DeleteTag(nPage, uTag, uFlags, pSaveOptions)

Parameters

L_INT nPage

Number of the page from which the tag will be deleted. Use -1 to delete the tag from the last page. Use 1 to delete the tag from the first page.

L_UINT uTag

The ID of the tag in the TIFF file. The tag IDs are between 0 and 65535.

L_UINT uFlags

Reserved for future use. Pass 0.

pSAVEFILEOPTION pSaveOptions

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

Returns

Value Meaning
SUCCESS The function was successful.
ERROR_TAG_MISSING The requested tag is missing.
< 1 An error occurred. Refer to Return Codes.

Comments

Note that if you pass a SAVEFILEOPTION, the PageNumber member of that structure will be ignored. The page number is indicated through the nPage parameter of this function.

If you want to delete the tag from a particular IFD in the file, set ESO_USEIFD in the SAVEFILEOPTIONS.Flags parameter and set SAVEFILEOPTIONS.IFD to the IFD in question. This function will delete tags only from the main IFDs that make up an image. Some TIFF tags are themselves SubIFDs. You can delete tags from such SubIFDs by using the SAVEFILEOPTION and specifying the IFD as above.

NOTES

  1. The LFCMP filter is used to delete the tag from all the TIFF and Exif files.

  2. Do not attempt to use this function to delete tags from inside an LFile::EnumTagsCallBack callback function. If you want to delete tags that you enumerate, use LFile::EnumTagsCallBack to add the tags to a list. Upon returning from LFile::EnumTags, you can delete all the tags from the list.

  3. You should be careful when you delete non-custom tags (tags below 32768). If you delete the wrong tag, you might corrupt the TIF file!

When you add or remove comments or tags, the comments and tags array at the end of the TIFF/Exif image file is re-written. When you modify existing comments or tags, the new value is added to the file and the IFD is modified as necessary. In all of these cases, there is no image recompression.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

The following example will delete the tag 0x8001 from page 1 of a TIFF file.

#define TGPAGENUMBER 266 
 
L_INT LFile__DeleteTagExample()  
{ 
   LFile File; 
   LOADFILEOPTION LoadFileOption; 
   L_INT nRet = 0; 
 
   File.SetFileName(MAKE_IMAGE_PATH(TEXT("OCR1.tif"))); 
 
   File.GetDefaultLoadFileOption(&LoadFileOption, sizeof(LoadFileOption)); 
 
   LoadFileOption.PageNumber = 1; 
 
   nRet = File.ReadTag(TGPAGENUMBER, NULL, NULL, NULL, &LoadFileOption) ; 
   if (nRet != SUCCESS) 
   { 
      nRet = File.DeleteTag(1, TGPAGENUMBER, 0, NULL); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
 
   return SUCCESS; 
} 

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

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