I’m trying to make an automation telegram → save attachments that saves (for demonstration I ask the telegram bot to send a file/photo back)
-file (photo / pdf) works great.
i run it one’s two times
-photo image in the best quality (I know that it sends photos in 4 different sizes, sometimes in 3, depending on the size)
i send it like image
I managed to set up only saving the file or photo sent as a file in one and more quantity.
I found some tips on the forum.
1- ifempty ( ; ) is very convenient. selects one or the other (it works)
2- {{last(map(1.message.photo; “file_id”))}} (it doesn’t work for me)
help with advice.
how to catch the best quality image’s.
how to catch more then one if it need’s
for now i can only catch small size image or FILE
if you see it’s small
i receive it like file and its super small
i need to receive image like image / files like files
i want to catch good resolution image
There’s a difference between sending a message and forwarding it to a bot.
I used a filter to separate the tasks.
1 - If it’s sent as a file, it goes to chain 1 and works fine.
2 - The filter sees it’s a photo and sends it a different way.
If you send photo by yourself not forward, you can use the command to take it in good quality.
{{1.message.photo[4].file_id}} - since the 4th image is the highest quality.
and it works !
I don’t like this command because it’s tied to the 4th image. I want it to take the last one (the highest quality),
I want to make the task more universal. because sometimes images are not 4 but 3.
so the challenge is to make the formula more universal, I don’t understand how yet. We need to use an array
and choose by last count or largest size.
the next step will be to figure out how to work with the images I forward from other users
Aliluya ) i made it!
I don’t know if I did it right, but the important thing is that it works.
telegram send images like array already 1/2/3/4 quality of image
so i add EXTRACTOR
with flow control {{last(1.message.photo)}} he took always last (best) quality
filter
then need download file
and send it like photo
i hope my information will help someone !
1 Like