c# - 如何生成 gridview 绑定(bind)条形码到 pdf?

标签 c# itext

我有一个网格,它绑定(bind)了数据库中的一些条形码。我想以 pdf 格式生成此条形码。我怎样才能做到这一点?抱歉,我不知道如何执行此操作,因此没有可显示的示例代码。我的 GridView 名称“GrdBarcode”。请帮助我。下面是我的条形码网格

  <asp:GridView ID="grdBarcode" CssClass="table"   
 OnRowDataBound="grdBarcode_RowDataBound" AutoGenerateColumns="false" 
 GridLines="None" runat="server">
 <Columns>
 <asp:TemplateField>
<ItemTemplate>
 <table style="width:100%">
 <tr>
 <p>Date:<asp:Label runat="server" ID="Label5" Text='<%#Eval("Date") %>'>    
 </asp:Label>   </p></td>
 <td align="center"></td> <td><p>No Of QP: <asp:Label runat="server"   
 ID="Label6" Text='<%#Eval("NoOfQP") %>'></asp:Label></p>
 <p>Time: <asp:Label runat="server" ID="Label7" Text='<%#Eval("Timing") %>'>
 </asp:Label></p>
 <p>Durations: <asp:Label runat="server" ID="Label8"  
Text='<%#Eval("Duration") %>'></asp:Label>)</p>
</td>
</tr>
<tr>
<td colspan="3" align="center">
<asp:DataList ID="datalistBarcode"  RepeatColumns="3"  
RepeatDirection="Horizontal" GridLines="None" 
OnItemDataBound="datalistBarcode_ItemDataBound"  runat="server">
<ItemTemplate> <asp:Label ID="lblBarCode" runat="server"   
Text='<%#Eval("BarCode") %>' Visible="false"></asp:Label>
<table class="table">
<tr> <td >
<asp:Panel ID="pnlBarCode" HorizontalAlign="center"  runat="server">
</asp:Panel>
</tr>
<tr>
<td align="center"><asp:Label ID="lblStudCode" runat="server" 
Text='<%#Eval("StudCode") %>'></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>
 </asp:DataList>
</td>
</tr>
 </table>
</ItemTemplate></asp:TemplateField>
</Columns>
</asp:GridView>      

enter image description here

我尝试了下面提到的方法。但它显示错误 Document has no pages

 protected void btnPrint_Click(object sender, EventArgs e)
    {
        foreach (GridViewRow row in grdBarcode.Rows)
        {
            DataList dl = (DataList)row.FindControl("datalistBarcode");
            string attachment = "attachment; filename=Article.pdf";
            Response.ClearContent();
            Response.AddHeader("content-disposition", attachment);
            Response.ContentType = "application/pdf";
            StringWriter stw = new StringWriter();
            HtmlTextWriter htextw = new HtmlTextWriter(stw);
            dl .DataBind();
            dl .RenderControl(htextw);
            Document document = new Document();
            PdfWriter.GetInstance(document, Response.OutputStream);
            document.Open();
            StringReader str = new StringReader(stw.ToString());
            HTMLWorker htmlworker = new HTMLWorker(document);
            htmlworker.Parse(str);
            document.Close();
            Response.Write(document);
            Response.End();
        }

最佳答案

当您需要网格时,最好使用PdfPTable

如果您还没有条形码,您可以使用 iText 或 iTextSharp 创建它们。看看 Barcodes灵感示例:

public void createPdf(String dest) throws IOException, DocumentException {
    Document document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(dest));
    document.open();
    PdfPTable table = new PdfPTable(4);
    table.setWidthPercentage(100);
    for (int i = 0; i < 12; i++) {
        table.addCell(createBarcode(writer, String.format("%08d", i)));
    }
    document.add(table);
    document.close();
}

public static PdfPCell createBarcode(PdfWriter writer, String code) throws DocumentException, IOException {
    BarcodeEAN barcode = new BarcodeEAN();
    barcode.setCodeType(Barcode.EAN8);
    barcode.setCode(code);
    PdfPCell cell = new PdfPCell(barcode.createImageWithBarcode(writer.getDirectContent(), BaseColor.BLACK, BaseColor.GRAY), true);
    cell.setPadding(10);
    return cell;
}

有关创建条形码的一些 C# 代码,请参阅:

如果您已经有了带有条形码的图像,您仍然可以使用表格,但问题应该是我如何在表格中组织图像?

这在以下问题中得到了回答:

关于c# - 如何生成 gridview 绑定(bind)条形码到 pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31340421/

相关文章:

c# - 在 visual studio 中自动完成时自动添加 'this' 标识符

c# - 文本渲染器。如何使用 endellipsis 呈现文本多行?

unicode - iText v5 unicode 和 ColdFusion

java - 添加图像到现有的PDF,java

java - 使用 iText 裁剪 pdf 而不丢失注释

c# - 500, 无效操作异常 : No route matches the supplied values

c# - 是否有返回 float 的 Math.PI 等价物?

c# - 如何在两个函数之间字符串化一个值?

java - iTextPDF 库 JAVA - 无法解析导入 com.itextpdf

c# - 使用 iTextSharp 导出为 PDF 时重复标题行