@@ -22,10 +22,6 @@ public CurMetadata()
2222 private CurMetadata ( CurMetadata other )
2323 {
2424 this . Compression = other . Compression ;
25- this . HotspotX = other . HotspotX ;
26- this . HotspotY = other . HotspotY ;
27- this . EncodingWidth = other . EncodingWidth ;
28- this . EncodingHeight = other . EncodingHeight ;
2925 this . BmpBitsPerPixel = other . BmpBitsPerPixel ;
3026
3127 if ( other . ColorTable ? . Length > 0 )
@@ -39,28 +35,6 @@ private CurMetadata(CurMetadata other)
3935 /// </summary>
4036 public IconFrameCompression Compression { get ; set ; }
4137
42- /// <summary>
43- /// Gets or sets the horizontal coordinates of the hotspot in number of pixels from the left. Derived from the root frame.
44- /// </summary>
45- public ushort HotspotX { get ; set ; }
46-
47- /// <summary>
48- /// Gets or sets the vertical coordinates of the hotspot in number of pixels from the top. Derived from the root frame.
49- /// </summary>
50- public ushort HotspotY { get ; set ; }
51-
52- /// <summary>
53- /// Gets or sets the encoding width. <br />
54- /// Can be any number between 0 and 255. Value 0 means a frame height of 256 pixels or greater. Derived from the root frame.
55- /// </summary>
56- public byte EncodingWidth { get ; set ; }
57-
58- /// <summary>
59- /// Gets or sets the encoding height. <br />
60- /// Can be any number between 0 and 255. Value 0 means a frame height of 256 pixels or greater. Derived from the root frame.
61- /// </summary>
62- public byte EncodingHeight { get ; set ; }
63-
6438 /// <summary>
6539 /// Gets or sets the number of bits per pixel.<br/>
6640 /// Used when <see cref="Compression"/> is <see cref="IconFrameCompression.Bmp"/>
@@ -175,6 +149,12 @@ public FormatConnectingMetadata ToFormatConnectingMetadata()
175149 ColorTable = this . ColorTable
176150 } ;
177151
152+ /// <inheritdoc/>
153+ public void AfterImageApply < TPixel > ( Image < TPixel > destination )
154+ where TPixel : unmanaged, IPixel < TPixel >
155+ {
156+ }
157+
178158 /// <inheritdoc/>
179159 IDeepCloneable IDeepCloneable . DeepClone ( ) => this . DeepClone ( ) ;
180160
0 commit comments