我正在使用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发送与桌面/移动应用程序上传的图像质量相同的图像(不是文档)?