Does sikuli work with most of the popular picture formats?

Asked by Parn Yin

I know Sikuli can work with PNG, JPG and BMP.
I've tested with them.

I am wondering, does Sikuli work with most of the popular picture formats?
Except PNG, JPG and BMP, something like GIF, TIF...

PNG, JPG and BMP are enough for my project, I am just curious. :)

FYI, I found this link but this page is more than 2 years old:
https://answers.launchpad.net/sikuli/+question/161635

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
Best RaiMan (raimund-hocke) said :
#1

Internally Sikuli uses Java's standard ImageIO.

The file endings it accepts can be listed in a Sikuli script using:
import javax.imageio.ImageIO as ImgIO
for e in list(ImgIO.getReaderFileSuffixes()): print e

printing:
bmp
jpg
wbmp
jpeg
png
gif

Revision history for this message
Parn Yin (pyin) said :
#2

Thanks RaiMan, that solved my question.