<?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[Bitmap als unkomprimiertes TGA abspeichern]]></title><description><![CDATA[<p>Hallo<br />
ich suche eine Möglichkeit ein Bild das in einem TBitmap vorliegt als unkomprimiertes TGA abzuspeichern.<br />
Gibt es da einen kostenlosen Komponenten?<br />
MfG Kevka</p>
<p>PS: Es ist mir nicht so wichtig, dass ich dafür Geld bezahlen würde.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/173610/bitmap-als-unkomprimiertes-tga-abspeichern</link><generator>RSS for Node</generator><lastBuildDate>Sat, 15 Aug 2026 02:53:16 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/173610.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 17 Feb 2007 19:17:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Bitmap als unkomprimiertes TGA abspeichern on Sat, 17 Feb 2007 19:17:30 GMT]]></title><description><![CDATA[<p>Hallo<br />
ich suche eine Möglichkeit ein Bild das in einem TBitmap vorliegt als unkomprimiertes TGA abzuspeichern.<br />
Gibt es da einen kostenlosen Komponenten?<br />
MfG Kevka</p>
<p>PS: Es ist mir nicht so wichtig, dass ich dafür Geld bezahlen würde.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1230286</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1230286</guid><dc:creator><![CDATA[kevka]]></dc:creator><pubDate>Sat, 17 Feb 2007 19:17:30 GMT</pubDate></item><item><title><![CDATA[Reply to Bitmap als unkomprimiertes TGA abspeichern on Sat, 17 Feb 2007 19:51:54 GMT]]></title><description><![CDATA[<p><a href="http://www.delphi-gems.com/GraphicEx.php" rel="nofollow">http://www.delphi-gems.com/GraphicEx.php</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1230304</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1230304</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Sat, 17 Feb 2007 19:51:54 GMT</pubDate></item><item><title><![CDATA[Reply to Bitmap als unkomprimiertes TGA abspeichern on Sun, 18 Feb 2007 13:29:24 GMT]]></title><description><![CDATA[<p>Ähm wie kann ich den Komponenten installieren?<br />
Hab das noch nie gemacht.</p>
<p>MfG Kevka</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1230585</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1230585</guid><dc:creator><![CDATA[kevka]]></dc:creator><pubDate>Sun, 18 Feb 2007 13:29:24 GMT</pubDate></item><item><title><![CDATA[Reply to Bitmap als unkomprimiertes TGA abspeichern on Sun, 18 Feb 2007 13:52:05 GMT]]></title><description><![CDATA[<p>Und wie benutzt man GraphicEx?<br />
Hat jemand schon mal mit ihr gearbeitet und kann ein Beispiel posten?<br />
MfG Kevka</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1230601</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1230601</guid><dc:creator><![CDATA[kevka]]></dc:creator><pubDate>Sun, 18 Feb 2007 13:52:05 GMT</pubDate></item><item><title><![CDATA[Reply to Bitmap als unkomprimiertes TGA abspeichern on Fri, 16 Mar 2007 22:02:42 GMT]]></title><description><![CDATA[<p>- Verzeichnis mit den entpackten Dateien in den Projektoptionen in den Include-Pfad und in den Bibliothekspfad mit aufnehmen<br />
- über 'Projekt -&gt; zum Projekt hinzufügen' alle *.pas-Dateien aus dem GraphicEx-Ordner (ausser denen mit DE, RU usw.) zum Projekt hinzufügen<br />
- Projekt einmal kompilieren, im GraphicEx-Verzeichnis sollte jetzt zu jeder *.pas eine *.hpp-Datei vorliegen<br />
- Code schreiben:</p>
<pre><code class="language-cpp">#include &lt;vcl.h&gt;
#include &lt;graphicex.hpp&gt;
#pragma hdrstop

#include &quot;Unit1.h&quot;
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource &quot;*.dfm&quot;
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
  : TForm(Owner)
{
  TTargaGraphic *tga = new TTargaGraphic();
  tga-&gt;LoadFromFile(&quot;f:\\headlogo.tga&quot;);
  Image1-&gt;Picture-&gt;Assign(tga);
  delete tga;
}
</code></pre>
<p>Falls beim Kompilieren in der GraphicEx.hpp E2285-Fehler in Zeilen mit 'inline bool ...' bemängelt werden, diese Zeilen auskommentieren (sind etliche).</p>
<p>Getestet im BCB6.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1246995</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1246995</guid><dc:creator><![CDATA[Jansen]]></dc:creator><pubDate>Fri, 16 Mar 2007 22:02:42 GMT</pubDate></item></channel></rss>