2012년 5월 31일 목요일

gtk 로 이미지 합치기

http://faq.pygtk.org/index.py?req=show&file=faq08.018.htp


 pixbuf = gtk.gdk.pixbuf_new_from_file("foo.png") // 위에 올릴 이미지
 pixbuf2 = gtk.gdk.pixbuf_new_from_file("bar.png") // 백그라운드로 할 이미지 
 pixbuf.composite(pixbuf2, 0, 0, pixbuf.props.width, pixbuf.props.height, 0, 0, 1.0, 1.0, gtk.gdk.INTERP_HYPER, 127)

 ## now pixbuf2 contains the result of the compositing operation
 pixbuf2.save("zbr.png", 'png') // 최종합친 이미지

댓글 없음:

댓글 쓰기