Grava4Delphi is a library for implementing gravatar for delphi.
Installation is done using the boss install
command:
boss install github.com/gamboajorge49/Gravatar4Delphi.git
uses Gravatar4d;
var
Gravatar: TGravatar4D;
image: TPicture;
begin
Gravatar := TGravatar4D.Create;
try
image := Gravatar.GravatarImage('[email protected]');
finally
FreeAndNil(Gravatar);
end;
end.
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.
Gravatar4Delphi
is free and open-source software licensed under the MIT License.