Ignore:
Timestamp:
May 4, 2018, 1:36:00 PM (6 years ago)
Author:
chronos
Message:
  • Modified: Drawing using pen with connected lines instead of individual pixels.
  • Added: Negative image function for RGB8 format.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/FastGraphics/UFGraphics.pas

    r33 r36  
    4242    procedure Mirror; virtual;
    4343    procedure Flip; virtual;
     44    procedure Negative; virtual;
    4445    procedure Fill(Color: IBColor); virtual; overload;
    4546    procedure Fill(Func: TGetColorPos); virtual; overload;
     
    391392procedure TBImage.Mirror;
    392393begin
    393 
    394394end;
    395395
    396396procedure TBImage.Flip;
     397begin
     398end;
     399
     400procedure TBImage.Negative;
    397401begin
    398402end;
     
    505509procedure TFPixmap.Negative;
    506510begin
    507 
     511  FBackend.Negative;
    508512end;
    509513
Note: See TracChangeset for help on using the changeset viewer.