Why does "save% test.png make image! [1024x768]" call Seg Fault?

I use Rebol3 (Version: 2.101.0.4.20) on my RaspberryPi, and every time I try to save the image to the file system, it fails Seg Fault:

save %test.png make image! [1024x768] 

Can someone explain why? Any tips for resolving this issue?

+4
source share
2 answers

This seems to be a bug in Rebol 3, as it works fine under Windows. Reproduced on x86 linux and raspberry pi. As a possible work you can correctly generate bmp files.

save %test.bmp make image! [1024x768]

+3
source

I just tried this on the latest Atronix build running on Ubuntu 16.04 on an ODROID-C1 + ARM / Linux board:

** Version: 3.0.99.4.20 ** ** Platform: Linux libc6-arm ** ** Build: July 20, 2018/19: 57: 26 **

I managed to save the PNG and BMP files using 'to-image on the gob! as well as using "make an image! [1024x768]

0
source

Source: https://habr.com/ru/post/1494145/


All Articles