我想为qgis创建一个pyqt-gui。
此行导致段错误:
$TBS = $this->get('opentbs');
$TBS->NoErr = TRUE;
$TBS->LoadTemplate('template.odt', OPENTBS_ALREADY_UTF8);
$image = imageCreate(300,200);
$colorRed = imageColorAllocate($image, 255,0,0);
$colorYellow = imageColorAllocate($image, 255,255,0);
imageFilledRectangle($image, 50, 50, 250, 150, $colorYellow);
$cccc=imageJpeg($image);
imageDestroy($image);
$data = array('image'=>$cccc);
$TBS->MergeField('b', $data);
$TBS->Show(OPENTBS_DOWNLOAD, 'file_name.odt');
我在最新的Ubuntu 18.04下运行QGIS 2.18.23。我安装了apt-get并使用了qgis.org/debian-ltr仿生主ppa。
任何线索该怎么办?在我们公司的环境中,我们同意使用QGIS lts-version,因此升级并不是真正的选择。