was ist neu ¦  programmier tips ¦  indy artikel ¦  intraweb artikel ¦  informationen ¦  links ¦  interviews
 sonstiges ¦  tutorials ¦  Add&Win Gewinnspiel

Tips (1541)

Dateien (137)
Datenbanken (90)
Drucken (35)
Grafik (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Mathematik (76)
Multimedia (45)
Oberfläche (107)
Objekte/
ActiveX (51)

OpenTools API (3)
Sonstiges (126)
Strings (83)
System (266)
VCL (242)

Tips sortiert nach
Komponente


Tip suchen

Tip hinzufügen

Add&Win Gewinnspiel

Werbung

54 Visitors Online


 
...einen negativen Filter auf einer Bitmap anwenden?
Autor: mehrdad farrokhmanesh
[ Tip ausdrucken ]  

Tip Bewertung (12):  
     



var
  
b: tbitmap;
  s: string;
  x, y: Integer;
  p: pbytearray;
  image1: TImage;
  
procedure LoadBitmap;
begin
  if 
opendialog1.Execute then
  begin
    
b := tbitmap;
    s := opendialog1.FileName;
    b.loadfromfile(s);
    image1.Canvas.draw(0,0,b);
  end;
end;

procedure ApplyNegativeFilter;
begin
  
image1.Height := b.Height;
  image1.Width  := b.Width;
  for y := 0 to b.Height - 1 do
  begin
    
p := b.scanline(y);
    for x := 0 to b.Width - 1 do
    begin
      
(([image1.Canvas.pixels[x, y] := rgb(255 - (p[x * 3) - 4]), 255 - (p[x * 3) - 2]),
        255 - (p[x * 3) - 3]));
      end;
    end;
end;


 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners