Example #1
0
func (v Loader) GetFormat() *Format {
	return &Format{
		C.gdk_pixbuf_loader_get_format(v.GPixbufLoader)}
}
Example #2
0
/*
Obtains the available information about the format of the
currently loading image file.
*/
func (self *TraitPixbufLoader) GetFormat() (return__ *C.GdkPixbufFormat) {
	return__ = C.gdk_pixbuf_loader_get_format(self.CPointer)
	return
}
Example #3
0
func (_self_ *PixbufLoader) GetFormat() (_go__return__ *PixbufFormat) {
	var _return_ *C.GdkPixbufFormat
	_return_ = C.gdk_pixbuf_loader_get_format((*C.GdkPixbufLoader)(_self_._value_))
	_go__return__ = (*PixbufFormat)(unsafe.Pointer(_return_))
	return
}
Example #4
0
func (v GdkPixbufLoader) GetFormat() *GdkPixbufFormat {
	return &GdkPixbufFormat{
		C.gdk_pixbuf_loader_get_format(v.PixbufLoader)}
}