Delphi直接实现分享图片功能


本文整理自网络,侵删。

 
procedure TCustomCameraViewDoc.ShareTextClick(Sender: TObject);
var
    FSharingService: IFMXShareSheetActionsService;
begin
  inherited;
  //分享照片
 
  TPlatformServices.Current.SupportsPlatformService(IFMXShareSheetActionsService, FSharingService);
  if FSharingService<>nil then
  begin
     FSharingService.Share(nil, '', ImageViewer1.Bitmap);
  end;
 
end;

先上代码,Delphi 支持跨平台开发app,早就实现了标准的Action,用于拍照、分享等功能实现,如果不用这标准的Action,那怎么办呢?

按上面的代码即可,直接取得IFMXShareSheetActionsService实例,并调用Share方法。

相关阅读 >>

Delphi wmi获取网卡mac

Delphi 如何判断一个exe文件是否运行

Delphi建立快捷方式的函数:createshortcut()

Delphi listboxadditems() 不重复添加edit1

Delphi vcl tmemo加速字符串读取

Delphi如何实现模拟组合按键,如发送ctrl_f的按键消息

Delphi检查是否在64位windows环境中运行?

Delphi listview中加载图片

Delphi读写utf-8、unicode格式文本文件

Delphi edit 让密码变成点

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...