Update docs
This commit is contained in:
Родитель
3fdcb20939
Коммит
bb979ca38d
|
@ -14,8 +14,10 @@
|
|||
</Attribute>
|
||||
</Attributes>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<summary>Flags used by the <see cref="T:SkiaSharp.SKImageFilter.CropRect" /> method.</summary>
|
||||
<remarks>
|
||||
<para />
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
<Member MemberName="HasAll">
|
||||
|
@ -29,7 +31,7 @@
|
|||
<ReturnType>SkiaSharp.SKCropRectFlags</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Consume all edges of the rectangle.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="HasHeight">
|
||||
|
@ -43,7 +45,7 @@
|
|||
<ReturnType>SkiaSharp.SKCropRectFlags</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Only use the height component of the rectangle.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="HasLeft">
|
||||
|
@ -57,7 +59,7 @@
|
|||
<ReturnType>SkiaSharp.SKCropRectFlags</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Only use the left component of the rectangle.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="HasTop">
|
||||
|
@ -71,7 +73,7 @@
|
|||
<ReturnType>SkiaSharp.SKCropRectFlags</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Only use the top component of the rectangle.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="HasWidth">
|
||||
|
@ -85,7 +87,7 @@
|
|||
<ReturnType>SkiaSharp.SKCropRectFlags</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Only use the width component of the rectangle.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<summary>SkData holds an immutable data buffer.</summary>
|
||||
<remarks>
|
||||
<para>Not only is the data immutable, but the actual pointer that is returned by the <see cref="P:SkiaSharp.SKData.Data" /> or the <see cref="P:SkiaSharp.SKData.Bytes" /> properties is guaranteed to always be the same for the life of this instance.</para>
|
||||
<para />
|
||||
<para></para>
|
||||
<para>You can use the constructors for this object to make copies of the data, or you can use the <see cref="M:SkiaSharp.SKData.FromMallocMemory" /> to wrap a block of memory that has been allocated with the platform malloc function.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -42,8 +42,12 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<summary>Requests that the decoding be canceled.</summary>
|
||||
<remarks>
|
||||
<para>Decoding is synchronous, but for long decodes, a different thread can call this method safely. This sets a state that the decoders will periodically check, and if they see it changed to cancel, they will cancel. This will result in Decode() returning <paramref name="false" />. However, there is no guarantee that the decoder will see the state change in time, so it is possible that CancelDecode() will be called, but will be ignored and Decode() will return <paramref name="true" /> (assuming no other problems were encountered).</para>
|
||||
<para />
|
||||
<para>This state is automatically reset at the beginning of a Decode operation.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Decode">
|
||||
|
@ -63,13 +67,15 @@
|
|||
<Parameter Name="mode" Type="SkiaSharp.SKImageDecoderMode" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="stream">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<param name="stream">Stream to decode from.</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<summary>Given a stream, decode it into the specified bitmap.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
<remarks>
|
||||
<para />
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="DecodeFile">
|
||||
|
@ -89,13 +95,18 @@
|
|||
<Parameter Name="mode" Type="SkiaSharp.SKImageDecoderMode" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="filename">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
<param name="filename">Filename to decode</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<summary>
|
||||
<para>Decode the image stored in the specified file, and store the result in the provided bitmap.</para>
|
||||
</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>
|
||||
<para></para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="DecodeFile">
|
||||
|
@ -116,14 +127,17 @@
|
|||
<Parameter Name="format" Type="SkiaSharp.SKImageDecoderFormat&" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="filename">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<param name="format">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
<param name="filename">Filename to decode</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<param name="format">On success, this will contain the format of the decoded file.</param>
|
||||
<summary>Decode the image stored in the specified file, and store the result in the provided bitmap.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>
|
||||
<para></para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="DecodeFileBounds">
|
||||
|
@ -142,11 +156,12 @@
|
|||
<Parameter Name="pref" Type="SkiaSharp.SKColorType" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="filename">To be added.</param>
|
||||
<param name="info">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="filename">Filename to decode</param>
|
||||
<param name="info">On success, the boundary information about the image will be stored here.</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<summary>Parses a file to extract the boundary information.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success and the <paramref name="info" /> field set with the image boundary information, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -167,12 +182,13 @@
|
|||
<Parameter Name="format" Type="SkiaSharp.SKImageDecoderFormat&" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="filename">To be added.</param>
|
||||
<param name="info">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="format">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="filename">Filename to decode</param>
|
||||
<param name="info">On success, the boundary information about the image will be stored here.</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="format">On success, this will contain the format of the decoded file.</param>
|
||||
<summary>Parses a file to extract the boundary information and the detected file format.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success and the <paramref name="info" /> field set with the image boundary information, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -193,12 +209,13 @@
|
|||
<Parameter Name="mode" Type="SkiaSharp.SKImageDecoderMode" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="buffer">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="buffer">Byte array containing the image.</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<summary>Decodes a image stored on a byte buffer.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -220,13 +237,14 @@
|
|||
<Parameter Name="format" Type="SkiaSharp.SKImageDecoderFormat&" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="buffer">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<param name="format">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="buffer">Byte array containing the image.</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<param name="format">On success, this will contain the format of the decoded file.</param>
|
||||
<summary>Decodes a image stored on a byte buffer.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -246,11 +264,12 @@
|
|||
<Parameter Name="pref" Type="SkiaSharp.SKColorType" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="buffer">To be added.</param>
|
||||
<param name="info">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="buffer">Byte array containing the image.</param>
|
||||
<param name="info">On success, the boundary information about the image will be stored here.</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<summary>Parses a byte array to extract the image boundary information.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success and the <paramref name="info" /> field set with the image boundary information, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -271,12 +290,13 @@
|
|||
<Parameter Name="format" Type="SkiaSharp.SKImageDecoderFormat&" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="buffer">To be added.</param>
|
||||
<param name="info">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="format">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="buffer">Byte array containing the image.</param>
|
||||
<param name="info">On success, the boundary information about the image will be stored here.</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="format">On success, this will contain the format of the decoded file.</param>
|
||||
<summary>Parses a byte array to extract the image boundary information and the detected file format.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success and the <paramref name="info" /> field set with the image boundary information, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -297,12 +317,13 @@
|
|||
<Parameter Name="mode" Type="SkiaSharp.SKImageDecoderMode" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="stream">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="stream">Stream containing the image</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<summary>Decodes a image from a stream.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -324,13 +345,14 @@
|
|||
<Parameter Name="format" Type="SkiaSharp.SKImageDecoderFormat&" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="stream">To be added.</param>
|
||||
<param name="bitmap">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="mode">To be added.</param>
|
||||
<param name="format">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="stream">Stream containing the image</param>
|
||||
<param name="bitmap">Target bitmap</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="mode">Decoding mode</param>
|
||||
<param name="format">On success, this will contain the format of the decoded file.</param>
|
||||
<summary>Decodes a image from a stream.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -350,11 +372,12 @@
|
|||
<Parameter Name="pref" Type="SkiaSharp.SKColorType" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="stream">To be added.</param>
|
||||
<param name="info">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="stream">Stream containing the image</param>
|
||||
<param name="info">On success, the boundary information about the image will be stored here.</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<summary>Parses a stream to extract the image boundary information</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success and the <paramref name="info" /> field set with the image boundary information, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -375,12 +398,13 @@
|
|||
<Parameter Name="format" Type="SkiaSharp.SKImageDecoderFormat&" RefType="ref" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<param name="stream">To be added.</param>
|
||||
<param name="info">To be added.</param>
|
||||
<param name="pref">To be added.</param>
|
||||
<param name="format">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<param name="stream">Stream containing the image</param>
|
||||
<param name="info">On success, the boundary information about the image will be stored here.</param>
|
||||
<param name="pref">Give preference to this color type</param>
|
||||
<param name="format">On success, this will contain the format of the decoded file.</param>
|
||||
<summary>Parses a stream to extract the image boundary information and the detected file format.</summary>
|
||||
<returns>
|
||||
<paramref name="true" /> on success and the <paramref name="info" /> field set with the image boundary information, <paramref name="false" /> on failure.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -416,7 +440,7 @@
|
|||
<Docs>
|
||||
<summary>Controls whether the decoder attempts to dither the image.</summary>
|
||||
<value>
|
||||
<para />
|
||||
<para></para>
|
||||
</value>
|
||||
<remarks>The default setting is <paramref name="true" />.</remarks>
|
||||
</Docs>
|
||||
|
@ -552,9 +576,9 @@
|
|||
<ReturnType>System.Boolean</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Returns <see langword="true" /> i<paramref name="true" /> if the decoding should stop.</summary>
|
||||
<value>To be added.</value>
|
||||
<remarks>To be added.</remarks>
|
||||
<remarks>This method is the companion to the <see cref="M:SkiaSharp.SKImageDecoder.CancelDecode" /> method which will request that the decoding of an image stop. </remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="SkipWritingZeros">
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>BMP file</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Gif">
|
||||
|
@ -54,7 +54,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>GIF file</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Ico">
|
||||
|
@ -68,7 +68,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Ico file</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Jpeg">
|
||||
|
@ -82,7 +82,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Jpeg File</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Ktx">
|
||||
|
@ -124,7 +124,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>PNG file</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Unknown">
|
||||
|
@ -138,7 +138,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Unknown file format.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Wbmp">
|
||||
|
@ -166,7 +166,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderFormat</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>WebP format</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<BaseTypeName>System.Enum</BaseTypeName>
|
||||
</Base>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<summary>Flags passed to the <see cref="M:SkiaSharp.SKImageDecoder.Decode" /> method.</summary>
|
||||
<remarks>These flags are used to control whether the decoder should decode the pixels in an image being loaded, of if the caller is merely interested in obtaining the boundary information from the image.</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
<Member MemberName="DecodeBounds">
|
||||
|
@ -24,7 +24,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderMode</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Only returns information about the bitmap (boundary).</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="DecodePixels">
|
||||
|
@ -38,7 +38,7 @@
|
|||
<ReturnType>SkiaSharp.SKImageDecoderMode</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Return entire bitmap (including pixels)</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<Docs>
|
||||
<summary>Results from the <see cref="M:SkiaSharp.SKImageDecoder.Decode" /> methods.</summary>
|
||||
<remarks>
|
||||
<para />
|
||||
<para></para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
|
@ -27,7 +27,8 @@
|
|||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>
|
||||
<para />
|
||||
<para>Image failed to decode. bitmap will be unchanged.</para>
|
||||
<para></para>
|
||||
</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -43,7 +44,8 @@
|
|||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>
|
||||
<para />
|
||||
<para>Part of the image decoded. The rest is filled automatically.</para>
|
||||
<para></para>
|
||||
</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -59,7 +61,8 @@
|
|||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>
|
||||
<para />
|
||||
<para>The entire image was decoded, if Mode was DecodePixels. Or the bounds were decoded when the mode is DecodeBounds.</para>
|
||||
<para></para>
|
||||
</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
<param name="sigmaY">To be added.</param>
|
||||
<param name="input">To be added.</param>
|
||||
<param name="cropRect">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a blur filter</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -85,7 +85,7 @@
|
|||
<param name="cf">To be added.</param>
|
||||
<param name="input">To be added.</param>
|
||||
<param name="cropRect">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a color filter</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -107,7 +107,7 @@
|
|||
<Docs>
|
||||
<param name="outer">To be added.</param>
|
||||
<param name="inner">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates an image compositing filter</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<Docs>
|
||||
<summary>Describe an image's dimensions and pixel type.</summary>
|
||||
<remarks>
|
||||
<para />
|
||||
<para></para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</Base>
|
||||
<Interfaces />
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Modifications to the alpha mask in the <see cref="T:SkiaSharp.SKPaint." /></summary>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
|
@ -71,7 +71,7 @@
|
|||
<Docs>
|
||||
<param name="blurStyle">To be added.</param>
|
||||
<param name="sigma">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a blur filter.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -119,7 +119,7 @@
|
|||
<param name="direction">To be added.</param>
|
||||
<param name="ambient">To be added.</param>
|
||||
<param name="specular">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates an emboss filter</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -149,7 +149,7 @@
|
|||
<param name="directionZ">To be added.</param>
|
||||
<param name="ambient">To be added.</param>
|
||||
<param name="specular">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates an emboss filter</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -11,7 +11,11 @@
|
|||
<Interfaces />
|
||||
<Docs>
|
||||
<summary>2D Transformation matrix with perspective.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<remarks>
|
||||
<para>The SKMatrix is a full 3x3 matrix.</para>
|
||||
<para />
|
||||
<para>It extends the traditional 2D affine transformation matrix with three perspective components that allow simple 3D effects to be created with it. Those components must be manually set by using the <see cref="P:SkiaSharp.SKMatrix.Persp0" />, <see cref="P:SkiaSharp.SKMatrix.Persp1" />, <see cref="P:SkiaSharp.SKMatrix.Persp2" /> fields of the matrix.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
<Member MemberName="MakeIdentity">
|
||||
|
@ -26,7 +30,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Returns the identity matrix.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -46,7 +50,7 @@
|
|||
</Parameters>
|
||||
<Docs>
|
||||
<param name="radians">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a rotation matrix</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -68,7 +72,7 @@
|
|||
<Docs>
|
||||
<param name="sx">To be added.</param>
|
||||
<param name="sy">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a scaling matrix.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -94,7 +98,7 @@
|
|||
<param name="sy">To be added.</param>
|
||||
<param name="pivotX">To be added.</param>
|
||||
<param name="pivotY">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a scaling matrix with a pivot point.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -116,7 +120,7 @@
|
|||
<Docs>
|
||||
<param name="sx">To be added.</param>
|
||||
<param name="sy">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a skewing matrix.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -138,7 +142,7 @@
|
|||
<Docs>
|
||||
<param name="dx">To be added.</param>
|
||||
<param name="dy">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a translation matrix.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -13,7 +13,15 @@
|
|||
<summary>
|
||||
<para>Holds the style and color information about how to draw geometries, text and bitmaps.</para>
|
||||
</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<remarks>
|
||||
<para>Anytime you draw something in Skia, and want to specify what color it is, or how it blends with the background, or what style or font to draw it in, you specify those attributes in a paint.</para>
|
||||
<para />
|
||||
<para>Unlike <see cref="T:SkiaSharp.SKCanvas" />, paints do not maintain an internal stack of state (i.e. there is no save/restore on a paint). However, paints are relatively light-weight, so the client may create and maintain any number of paint objects, each set up for a particular use. Factoring all of these color and stylistic attribute out of the canvas state, and into (multiple) paint objects, allows canvas’ save/restore to be that much more efficient, as all they have to do is maintain the stack of matrix and clip settings.</para>
|
||||
<para />
|
||||
<para />
|
||||
<para />
|
||||
<para />
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
<Member MemberName=".ctor">
|
||||
|
|
|
@ -9,8 +9,10 @@
|
|||
<BaseTypeName>System.Enum</BaseTypeName>
|
||||
</Base>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<summary>Possible values to interpret the incoming array of points for the <see cref="M:SkiaSharp.SKCanvas.DrawPoints" /> method.</summary>
|
||||
<remarks>
|
||||
<para />
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
<Member MemberName="Lines">
|
||||
|
@ -24,7 +26,7 @@
|
|||
<ReturnType>SkiaSharp.SKPointMode</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Interpret the data as coordinates for lines.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Points">
|
||||
|
@ -38,7 +40,7 @@
|
|||
<ReturnType>SkiaSharp.SKPointMode</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Interpret the data as coordinates for points.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Polygon">
|
||||
|
@ -52,7 +54,7 @@
|
|||
<ReturnType>SkiaSharp.SKPointMode</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Interpret the data as coordinates for polygons.</summary>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
|
|
|
@ -10,8 +10,10 @@
|
|||
</Base>
|
||||
<Interfaces />
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
<summary>Floating point rectangle</summary>
|
||||
<remarks>
|
||||
<para />
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
<Member MemberName=".ctor">
|
||||
|
@ -32,7 +34,7 @@
|
|||
<param name="top">To be added.</param>
|
||||
<param name="right">To be added.</param>
|
||||
<param name="bottom">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Initializes a new instance from left, top, right and bottom coordinates.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -68,7 +70,7 @@
|
|||
<Docs>
|
||||
<param name="width">To be added.</param>
|
||||
<param name="height">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a new rectangle with the specified width and height.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
@ -94,7 +96,7 @@
|
|||
<param name="y">To be added.</param>
|
||||
<param name="width">To be added.</param>
|
||||
<param name="height">To be added.</param>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Creates a new rectangle with the specified initial point (x,y) with the given width and height.</summary>
|
||||
<returns>To be added.</returns>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</Base>
|
||||
<Interfaces />
|
||||
<Docs>
|
||||
<summary>To be added.</summary>
|
||||
<summary>Integer rectangle</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<summary>Shaders specify the source color(s) for what is being drawn in the <see cref="T:SkiaSharp.SKPaint" />.</summary>
|
||||
<remarks>
|
||||
<para>Shaders specify the source color(s) for what is being drawn. If a paint has no shader, then the paint's color is used. If the paint has a shader, then the shader's color(s) are use instead, but they are modulated by the paint's alpha. </para>
|
||||
<para />
|
||||
<para></para>
|
||||
<para>This makes it easy to create a shader once (e.g. bitmap tiling or gradient) and then change its transparency w/o having to modify the original shader, only the paint's alpha needs to be modified.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
<Docs>
|
||||
<summary>Stores an ordered pair of integers describing the width and height of a rectangle.</summary>
|
||||
<remarks>
|
||||
<para />
|
||||
<para></para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Members>
|
||||
|
|
Загрузка…
Ссылка в новой задаче