AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Sprachen und Entwicklungsumgebungen Sonstige Fragen zu Delphi Delphi 16x16-Bitmap in 32x16-Glyph umwandeln
Thema durchsuchen
Ansicht
Themen-Optionen

16x16-Bitmap in 32x16-Glyph umwandeln

Ein Thema von scrat1979 · begonnen am 14. Okt 2007 · letzter Beitrag vom 17. Okt 2007
 
alzaimar
(Moderator)

Registriert seit: 6. Mai 2005
Ort: Berlin
4.956 Beiträge
 
Delphi 2007 Enterprise
 
#9

Re: 16x16-Bitmap in 32x16-Glyph umwandeln

  Alt 15. Okt 2007, 07:28
Als Anregung.
Delphi-Quellcode:
Function ColorToGrayScale (aColor : TColor) : TColor;
Var
  m : Integer;

Begin
  m := (GetRValue (aColor) + GetGValue(aColor) + GetBValue(aColor)) Div 3;
  Result := RGB (m, m, m);
End;

Procedure CreateGlpyhSet (aBitmap : TBitmap; aResultGlyph : TBitmap);
Var
  i, j : Integer;

Begin
  aResultGlyph.Width := 2*aBitmap.Width;
  aResultGlyph.Height := aBitmap.Height;
  aResultGlyph.Canvas.Draw(0,0, aBitmap);
  For i:=0 to aBitmap.Height-1 do
    For j := 0 to aBitmap.Width-1 do
      aResultGlyph[i,j+aBitmap.Width] := ColorToGrayscale (aBitmap[i,j])
End;
"Wenn ist das Nunstruck git und Slotermeyer? Ja! Beiherhund das Oder die Flipperwaldt gersput!"
(Monty Python "Joke Warefare")
  Mit Zitat antworten Zitat
 


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 22:37 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz