←Select platform

StampHeight Property

Summary

Gets and sets the height for the stamp image.

Syntax

C#
Objective-C
C++/CLI
Java
Python
public int StampHeight { get; set; } 
@property (nonatomic, assign) NSUInteger stampHeight; 
public int getStampHeight() 
public void setStampHeight(int value) 
public: 
property int StampHeight { 
   int get(); 
   void set (    int ); 
} 
StampHeight # get and set (CodecsHeicSaveOptions) 

Property Value

The height for the stamp image. The default value is 0.

Note

  • The HEIF file format specification recommends that the width and height of the stamp are set to values <= 320.
  • The MIAF file format specification also recommends that the image-size to stamp-size ratio result in values <= 200:1.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
 
using Leadtools.ImageProcessing.Core; 
 
public void CodecsHeicOptions_Example() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
   string fileName = "C:\temp\test.heic"; 
   using (RasterImage image = codecs.Load(fileName)) 
   { 
      /* Save a HEIC file using qFactor of 30 and no stamp */ 
      string outFile30 = @"C:\temp\out30-NoStamp.heic"; 
      codecs.Options.Heic.Load.Multithreaded = false; // CodecsHeicLoadOptions reference 
      codecs.Options.Heic.Save.QualityFactor = 30; // CodecsHeicOptions & CodecsHeicSaveOptions reference 
      codecs.Save(image, outFile30, RasterImageFormat.Heic, 0); 
 
      /* Save a HEIC file using qFactor of 40 and a stamp */ 
      string outFile40 = @"C:\temp\out40-Stamp.heic"; 
      codecs.Options.Heic.Save.QualityFactor = 40; 
      codecs.Options.Heic.Save.SaveWithStamp = true; 
      codecs.Options.Heic.Save.StampWidth = 320; 
      codecs.Options.Heic.Save.StampHeight = codecs.Options.Heic.Save.StampWidth * image.Height / image.Width; 
      codecs.Options.Heic.Save.StampBitsPerPixel = 24; 
      codecs.Save(image, outFile40, RasterImageFormat.Heic, 0); 
   } 
 
   // Clean up  
   codecs.Dispose(); 
} 

Requirements

Target Platforms

See Also

CodecsHeicSaveOptions Class

CodecsHeicSaveOptions Members

High Efficiency File Format - HEIC

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

Leadtools.Codecs Assembly

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