我需要插入一个图像到PdfGriD(细胞)使用BackgroundImage,但不工作。
PdfBitmap pBmp = PdfBitmap(await _readImageData('1.jpg'));
PdfGridRow row2 = grid2.rows.add();
row2.cells[0].value = 'Velocidad - v [fpm]';
row2.cells[1].style.backgroundImage = pBmp;
...
grid2.draw(page: page, bounds: const Rect.fromLTWH(0, 130, 500, 500));
2条答案
按热度按时间brccelvz1#
我们可以通过使用单元格样式中的BackgroundImage属性将图像插入到PdfGrid中。它在网格单元格中正确添加了一个图像。请找到下面的代码片段,
示例:https://www.syncfusion.com/downloads/support/directtrac/general/pd/GridOutput921468422
UG:https://help.syncfusion.com/flutter/pdf/working-with-images
表:https://help.syncfusion.com/flutter/pdf/working-with-tables
qvk1mo1f2#
这对我不起作用。图像未显示在表中。