<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <linklocation="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<summary>Contains functions for inlined pixbuf handling. It allows for pixbuf data to be accessed in a raw form, serialized, and stored.</summary>
<remarks>At the time of this writing, gtk-sharp 0.98 has a bug where <seecref="M:Gdk.Pixdata.Serialize"/> and <seecref="M:Gdk.Pixdata.Deserialize"/> use <seecref="T:System.Byte"/> where Byte [] should be used making them function improperly. This problem should be fixed in a future release.</remarks>
<summary>Fils in the Gdk.Pixdata with data from an existing <seecref="T:Gdk.Pixbuf"/>.</summary>
<paramname="pixbuf">The 'Gdk.Pixbuf' which the Gdk.Pixdata is to be derived from.</param>
<paramname="use_rle">Whether to use run-length encoding for the pixel data.</param>
<returns> If "ure_rle" is set to true, an <seecref="T:System.IntPtr"/> pointing to the new run-length encoded pixel data is returned, otherwise, <seecref="F:System.IntPtr.Zero"/></returns>
<summary>The length of the raw structure.</summary>
<remarks>This is either set to less than one to disable length checks or set to the length of the raw GdkPixbuf header, which is currently 24, plus the length of the pixel data.</remarks>
<summary>An enumeration containing three sets of flax for the <seecref="T:Gdk.Pixdata"/>. One used for colorspace, one for the width of the samples, and one for the encoding of the pixel data.</summary>
<remarks>
<listtype="table">
<listheader>
<term>Value</term>
<description>Description</description>
</listheader>
<item>
<term>0x01</term>
<description>Each pixel has red, green, and blue samples.</description>
</item>
<item>
<term>0x02</term>
<description>Each pixel has red, green, and blue samples, and an alpha value.</description>
</item>
<item>
<term>0xFF</term>
<description>A mask for the colortype flags.</description>
</item>
<item>
<term>0x01 << 16</term>
<description>Each sample has 8 bits.</description>
</item>
<item>
<term>0x0f << 16</term>
<description>A mask for the sample width flags.</description>
</item>
<item>
<term>0x01 << 24</term>
<description>The pixel data is in raw form.</description>
</item>
<item>
<term>0x02 << 24</term>
<description>The pixel data is run-length encoded. Runs may be up to 127 bytes long; their length is stored in a single byte preceding the pixel data for the run. If a run is constant, its length byte has the high bit set and the pixel data consists of a single pixel which must be repeated.</description>
</item>
<item>
<term>0x0f << 24</term>
<description>A mask for the encoding flags.</description>
<summary>Generates serialized pixdata that can then be stored and converted back into a <seecref="T:Gdk.Pixdata"/> with <seecref="M:Gdk.Pixdata.Deserialize"/>.</summary>