Skip to content

gamboajorge49/Gravatar4Delphi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gravatar4Delphi

Grava4Delphi is a library for implementing gravatar for delphi.

Gravatar web site

⚙️ Installation

Installation is done using the boss install command:

boss install github.com/gamboajorge49/Gravatar4Delphi.git

⚡️ Quickstart Delphi

uses Gravatar4d;

var
  Gravatar: TGravatar4D;
  image: TPicture;

begin
  Gravatar := TGravatar4D.Create;
  try
    image := Gravatar.GravatarImage('[email protected]');

  finally    
    FreeAndNil(Gravatar);
  end;

end.

Delphi Versions

Gravatar4Delphi works with Delphi 11 Alexandria, Delphi 10.4 Sydney, Delphi 10.3 Rio, Delphi 10.2 Tokyo, Delphi 10.1 Berlin, Delphi 10 Seattle, Delphi XE8 and Delphi XE7.

⚠️ License

Gravatar4Delphi is free and open-source software licensed under the MIT License.

📐 Tests

tests