whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

29 Visitors Online


 
...apply a negative filter to a bitmap?
Autor: mehrdad farrokhmanesh
[ Print tip ]  

Tip Rating (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;


 

Rate this tip:

poor
very good


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