Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.85 KB

README.md

File metadata and controls

52 lines (40 loc) · 1.85 KB

Show some ❤️ and star the repo to support the project

Delphi FMX Image Effects program for Windows OS

This program powered by the FireMonkey framework. And uses FMX components. enter image description here

Here this is the development screenshot (RAD Studio 10.1 Berlin) enter image description here

In this Image Effects program, you can change your existing pictures. See that! enter image description here

There are several effects, for example:

  • Ripple
  • Blur
  • Invert
  • Monochrome
  • Gloom
  • Emboss
  • Sepial
  • Pencil

How to make a screenshot from running application in Delphi FireMonkey?

procedure TFormMain.MenuItemSavePictureClick(Sender: TObject);
var
  B: TBitmap;
  
begin
  B := TBitmap.Create;
  try
    if SaveDialog1.Execute then
      B := Image1.MakeScreenshot;
    Image1.Bitmap.Assign(B);

    Image1.Bitmap.SaveToFile(SaveDialog1.FileName + '.bmp');
  finally
    B.Free;
  end;
end;

Learn more on my website! Delphi.Uz

I'm on social networks:

My Android app which is built with Delphi FireMonkey