<?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[Malprogramm - Zoom im DC]]></title><description><![CDATA[<p>Hallo,</p>
<p>im Paint kann man doch das Bild bis zu 8 fach vergrößern. Was für eine Technik wird da hergenommen. Gibt es für den Zoom eine Funktion oder wird das Bitmap einfach nur vergrößert gezeichnet?</p>
<p>thx im voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/88507/malprogramm-zoom-im-dc</link><generator>RSS for Node</generator><lastBuildDate>Sun, 19 Apr 2026 09:01:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/88507.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 10 Oct 2004 19:25:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Malprogramm - Zoom im DC on Sun, 10 Oct 2004 19:25:05 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>im Paint kann man doch das Bild bis zu 8 fach vergrößern. Was für eine Technik wird da hergenommen. Gibt es für den Zoom eine Funktion oder wird das Bitmap einfach nur vergrößert gezeichnet?</p>
<p>thx im voraus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/625577</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/625577</guid><dc:creator><![CDATA[maxi S.]]></dc:creator><pubDate>Sun, 10 Oct 2004 19:25:05 GMT</pubDate></item><item><title><![CDATA[Reply to Malprogramm - Zoom im DC on Sun, 10 Oct 2004 19:26:30 GMT]]></title><description><![CDATA[<p>Was MSPaint angeht vermute ich ein simples StretchBlt()</p>
<p>MfG SideWinder</p>
]]></description><link>https://www.c-plusplus.net/forum/post/625578</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/625578</guid><dc:creator><![CDATA[SideWinder]]></dc:creator><pubDate>Sun, 10 Oct 2004 19:26:30 GMT</pubDate></item><item><title><![CDATA[Reply to Malprogramm - Zoom im DC on Sun, 10 Oct 2004 19:29:35 GMT]]></title><description><![CDATA[<p>MSDN ist oft eine gute Fundstelle um sowas zu finden:</p>
<pre><code class="language-cpp">BOOL StretchBlt(

    HDC hdcDest,	// handle of destination device context 
    int nXOriginDest,	// x-coordinate of upper-left corner of dest. rect. 
    int nYOriginDest,	// y-coordinate of upper-left corner of dest. rect. 
    int nWidthDest,	// width of destination rectangle 
    int nHeightDest,	// height of destination rectangle 
    HDC hdcSrc,	// handle of source device context 
    int nXOriginSrc,	// x-coordinate of upper-left corner of source rectangle 
    int nYOriginSrc,	// y-coordinate of upper-left corner of source rectangle 
    int nWidthSrc,	// width of source rectangle 
    int nHeightSrc,	// height of source rectangle 
    DWORD dwRop 	// raster operation code 
   );
</code></pre>
<p>EDIT: da war ein Fremd-Mod schneller <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/625579</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/625579</guid><dc:creator><![CDATA[MiC++ha]]></dc:creator><pubDate>Sun, 10 Oct 2004 19:29:35 GMT</pubDate></item></channel></rss>