<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Stück aus Bitmap laden und anzeigen]]></title><description><![CDATA[<p>Hi!<br />
Also wie schaff ich es nur ein RECT Bereich aus dem Bitmap zu laden und dann auch zu zeichnen ???</p>
<p>Danke für Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/45104/stück-aus-bitmap-laden-und-anzeigen</link><generator>RSS for Node</generator><lastBuildDate>Sun, 26 Apr 2026 00:58:24 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/45104.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 06 Aug 2003 22:33:39 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Stück aus Bitmap laden und anzeigen on Wed, 06 Aug 2003 22:33:39 GMT]]></title><description><![CDATA[<p>Hi!<br />
Also wie schaff ich es nur ein RECT Bereich aus dem Bitmap zu laden und dann auch zu zeichnen ???</p>
<p>Danke für Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/325926</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/325926</guid><dc:creator><![CDATA[Armin2]]></dc:creator><pubDate>Wed, 06 Aug 2003 22:33:39 GMT</pubDate></item><item><title><![CDATA[Reply to Stück aus Bitmap laden und anzeigen on Thu, 07 Aug 2003 06:49:12 GMT]]></title><description><![CDATA[<p>soweit ich weis kannst du nicht nur ein bisschen von nem bitmap laden<br />
aber du kannst nur einen teil zeichnen (mit BitBlt)<br />
also zb</p>
<pre><code class="language-cpp">myDC.BitBlt(0, //xpos
	   0, //ypos
	   50, //grösse in x
            50, //grösse in y
	   &amp;myBitmapDC, //der dc in den du das bitmap selectet hast
	   0, //ab welcher stelle du das bitmap kopieren willst (x)
	   0, //ab welcher stelle du das bitmap kopieren willst (y)
	   SRCCOPY //angabe das es kopiert werden soll
            );
//myDC ist das dc auf das du zeichnen willst
</code></pre>
<p>mehr infos in der msdn</p>
]]></description><link>https://www.c-plusplus.net/forum/post/326025</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/326025</guid><dc:creator><![CDATA[wuschu]]></dc:creator><pubDate>Thu, 07 Aug 2003 06:49:12 GMT</pubDate></item></channel></rss>