<?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[Pixel Breite&#x2F;Höhe eines HBITMAPs]]></title><description><![CDATA[<p>Weiß jemand ie ich die höhe und die breite eines HBITMAPs heraus bekomme, elches ich in meinem Programm zufor lade?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/218171/pixel-breite-höhe-eines-hbitmaps</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 04:39:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/218171.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 16 Jul 2008 22:15:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Pixel Breite&#x2F;Höhe eines HBITMAPs on Wed, 16 Jul 2008 22:15:10 GMT]]></title><description><![CDATA[<p>Weiß jemand ie ich die höhe und die breite eines HBITMAPs heraus bekomme, elches ich in meinem Programm zufor lade?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1548551</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1548551</guid><dc:creator><![CDATA[Gast7364]]></dc:creator><pubDate>Wed, 16 Jul 2008 22:15:10 GMT</pubDate></item><item><title><![CDATA[Reply to Pixel Breite&#x2F;Höhe eines HBITMAPs on Thu, 17 Jul 2008 05:22:32 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">BITMAP  bitmap;
int     width, height;

GetObject(hBitmap, sizeof(BITMAP), &amp;bitmap);
width  = bitmap.bmWidth;
height = bitmap.bmHeight;
</code></pre>
<p>hBitmap ist dabei der Handle deiner HBITMAP, die du zuvor geladen hast.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1548583</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1548583</guid><dc:creator><![CDATA[Virtus]]></dc:creator><pubDate>Thu, 17 Jul 2008 05:22:32 GMT</pubDate></item></channel></rss>