如何通过Skype API发送图像?

时间:2015-09-04 22:28:32

标签: vb.net skype4com

我正在使用Skype4ComLib库尝试将图像发送给Skype上的联系人。

Private Sub Button17_Click(sender As Object, e As EventArgs) Handles btnImageLoad.Click
    OpenFileDialog1.ShowDialog()
    PicBox.ImageLocation = OpenFileDialog1.FileName.ToString
End Sub

这将打开一个对话框,供用户选择图像并将其加载到名为PicBox的图片框中。

Private Sub Button15_Click(sender As Object, e As EventArgs) Handles Button15.Click
    TimerImage.Stop()
End Sub

Private Sub Button15_Click(sender As Object, e As EventArgs) Handles Button16.Click
    TimerImage.Stop()
End Sub

按钮15和16启动计时器。

我想从计时器中发送图像,但我不能使用skype.sendmessage,因为它只接受一个字符串。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

使用SendKeys.Send方法,您可以通过实际的Skype应用程序将剪贴板中的图片粘贴到邮件中。

我就是这样做的:

My.Computer.Clipboard.SetImage(PicBox.Image)
SkypeClient.Client.OpenMessageDialog("<contact to send to>")
SkypeClient.Client.Focus()
SendKeys.Send("^(V){ENTER}")

<contact to send to>替换为您要将图片发送到的联系人姓名。