Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
645 views
in Technique[技术] by (71.8m points)

python - Gtk+3 Gdk Pixbuf.new_from_data gives "Segmentation fault (core dumped)" error 139

In my application I have a GtkImage that must show the processed image from a choosed file. So, in the handlers section I have:

import numpy as np
from PIL import Image , ImageDraw
from gi.repository import Gtk,  GdkPixbuf
. . .
. . .
def on_fitchooserdialog_response(self, menuitem, data=None):
    if data == 1:  
        self.fitlist = self.fitchooser.get_filenames()
        # get data from 1st file:
        _, self.data = Getdata(self.fitlist[0])
        # convert from Fits to 2D array:
        pngarray = Fit2png(self.data)
        # rescale:
        size = tuple(x/2 for x in pngarray.shape)
        im = Image.fromarray(pngarray)
        im.thumbnail((size[1],size[0]), Image.BICUBIC)

Up to here, all is OK. If we do:

       im.save("../tmp/tmp.png")
       pixbuf = GdkPixbuf.Pixbuf.new_from_file('../tmp/tmp.png')
       self.imagen.set_property("pixbuf", pixbuf)

the expected image is pasted on the GtkImage widget. But that is the ugly way, isnt it?

So Im trying:

im = im.convert("RGB")
arr = np.array(im).flatten()
pixbuf = GdkPixbuf.Pixbuf.new_from_data(arr,
      GdkPixbuf.Colorspace.RGB, False, 8, size[1], size[0], 3*size[1])

But the result is "Error 139, Segmentation fault (core dumped)"

What am I missing?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This seems to be related to this gdk bug: https://bugzilla.gnome.org/show_bug.cgi?id=721497

Basically it is a use after free bug in the python wrapper of gdk which can result in image distortions and/or segfaults as it did for you. See: https://stackoverflow.com/a/24070152/3528174

You can find an example of such image distortions in this question: How to correctly covert 3d array into continguous rgb bytes


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...