Struct WicImageParameters
Assembly: JeremyAnsel.DirectX.WinCodec.dll
Syntax
public struct WicImageParameters : IEquatable<WicImageParameters>
Constructors
|
Edit this page
View Source
Declaration
public WicImageParameters(WicD2D1PixelFormat pixelFormat, float dpiX, float dpiY, float top, float left, uint width, uint height)
Parameters
|
Edit this page
View Source
Declaration
public WicImageParameters(WicDxgiFormat format, WicD2D1AlphaMode alphaMode, float dpiX, float dpiY, float top, float left, uint width, uint height)
Parameters
Properties
|
Edit this page
View Source
DpiX
Declaration
public float DpiX { get; set; }
Property Value
|
Edit this page
View Source
DpiY
Declaration
public float DpiY { get; set; }
Property Value
|
Edit this page
View Source
Left
Declaration
public float Left { get; set; }
Property Value
|
Edit this page
View Source
Declaration
public WicD2D1PixelFormat PixelFormat { get; set; }
Property Value
|
Edit this page
View Source
PixelHeight
Declaration
public uint PixelHeight { get; set; }
Property Value
|
Edit this page
View Source
PixelWidth
Declaration
public uint PixelWidth { get; set; }
Property Value
|
Edit this page
View Source
Top
Declaration
public float Top { get; set; }
Property Value
Methods
|
Edit this page
View Source
Equals(WicImageParameters)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(WicImageParameters other)
Parameters
Returns
Type |
Description |
bool |
true if the current object is equal to the other parameter; otherwise, false.
|
|
Edit this page
View Source
Equals(object?)
Indicates whether this instance and a specified object are equal.
Declaration
public override bool Equals(object? obj)
Parameters
Type |
Name |
Description |
object |
obj |
The object to compare with the current instance.
|
Returns
Type |
Description |
bool |
true if obj and this instance are the same type and represent the same value; otherwise, false.
|
Overrides
|
Edit this page
View Source
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type |
Description |
int |
A 32-bit signed integer that is the hash code for this instance.
|
Overrides
Operators
|
Edit this page
View Source
operator ==(WicImageParameters, WicImageParameters)
Declaration
public static bool operator ==(WicImageParameters left, WicImageParameters right)
Parameters
Returns
|
Edit this page
View Source
operator !=(WicImageParameters, WicImageParameters)
Declaration
public static bool operator !=(WicImageParameters left, WicImageParameters right)
Parameters
Returns
Implements