如何使用Telegram Bot API提高发送图像的质量

时间:2019-04-22 11:18:10

标签: java telegram-bot

我正在使用Telegram Bot API发送类似

的图像
SendDocument newDocMessage = new SendDocument().setDocument(path.toFile());

SendPhoto newPhotoMessage = new SendPhoto().setPhoto(path.toFile());
SendPhoto newPhotoMessageStream = new SendPhoto().setPhoto("Image", stream);

,但是使用SendPhoto发送的图像质量比SendDocument差很多(因此服务器上的图像可以)。 我知道在任何情况下Telegram都会压缩图像,但是即使使用移动应用程序或从桌面上传相同的图像,质量也要好得多。

是否可以使用Bot API发送与桌面/移动应用程序上传的图像质量相同的图像(不是文档)?

0 个答案:

没有答案