Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What image formats are supported by Gdk-Pixbuf (Gtk-Image?) by Default?

I know that Gdk-Pixbuf supports png and jpg, but I cannot find an exact list of all the completely (or partially) supported image formats anywhere on the internet. It is necessary for my current project, since I need to check the extension of every file in a directory and determine whether it is supported or not by gdk-pixbuf. Any help?

like image 420
ApprenticeHacker Avatar asked Dec 27 '22 13:12

ApprenticeHacker


1 Answers

I know this is 5+ years old but I had trouble finding this for PyGI / PyGObject (3.22.0).

import gi.repository.GdkPixbuf as pixbuf

Then we can get all the formats using:

for f in pixbuf.Pixbuf.get_formats():
    print f.get_name()

On my system (might be different on yours if you installed other loaders), I get:

  • ani
  • bmp
  • GdkPixdata
  • gif
  • icns
  • ico
  • jpeg
  • png
  • pnm
  • qtif
  • svg
  • tga
  • tiff
  • wmf
  • xbm
  • xpm
like image 156
Max Avatar answered Jan 14 '23 14:01

Max