Beispiel #1
0
func (p *Pixbuf) GetHeight() int {
	return int(C.gdk_pixbuf_get_height(p.GPixbuf))
}
Beispiel #2
0
// GetHeight is a wrapper around gdk_pixbuf_get_height().
func (v *Pixbuf) GetHeight() int {
	c := C.gdk_pixbuf_get_height(v.native())
	return int(c)
}
Beispiel #3
0
func (p *Pixbuf) GetHeight() int {
	return int(C.gdk_pixbuf_get_height(C.toGdkPixbuf(unsafe.Pointer(p.GPixbuf))))
}
Beispiel #4
0
/*
Queries the height of a pixbuf.
*/
func (self *TraitPixbuf) GetHeight() (return__ int) {
	var __cgo__return__ C.int
	__cgo__return__ = C.gdk_pixbuf_get_height(self.CPointer)
	return__ = int(__cgo__return__)
	return
}
Beispiel #5
0
// GetHeight is a wrapper around gdk_pixbuf_get_height().
func (v *Pixbuf) GetHeight() int {
	return int(C.gdk_pixbuf_get_height(v.Native()))
}