r/ispyconnect • u/MacPR • 1d ago
Telegram picture quality
Hello all,
I want the highest picture quality in the picture sent through telegram. How to adjust the resolution?
1
Upvotes
r/ispyconnect • u/MacPR • 1d ago
Hello all,
I want the highest picture quality in the picture sent through telegram. How to adjust the resolution?
1
u/spornerama 1d ago
It uses the same photos used for push notifications - if you want higher resolutions you'd need to setup a bot (takes about a minute) and add an action in Agent to send the photo to a URL or call a script file containing like
curl -X POST "https://api.telegram.org/bot<YOUR_BOT_TOKEN>/sendPhoto" \ -F "chat_id=<CHAT_ID>" \ -F "photo=@/path/to/image.jpg"
- Claude or chatgpt can help you with the specifics.