1

rdlcレポートにバーコード画像を表示したい。

次のコードを使用して、そのバーコード イメージのメモリ ストリームを取得します。

からインストールされたナゲットhttps://www.nuget.org/packages/Aspose.BarCode/

 /// This function generates the QR code image using given string and returns the ImageByteArray
    /// </summary>
    /// <param name="QRCodeString">string from which the QR code Image will generate</param>
    /// <param name="ImageWidth">Image Height</param>
    /// <param name="ImageHeight">Image Width</param>
    /// <param name="GetImageOnly">Set to true if you need only QR code image. Set to false if you need QR code image with code text below the image</param>
    /// <returns></returns>
    private MemoryStream GetQRCodeImage(string QRCodeString, int ImageWidth, int ImageHeight, bool GetImageOnly)
    {
        //Creating memory stream
        System.IO.MemoryStream ms = new System.IO.MemoryStream();
        try
        {
            Aspose.BarCode.BarCodeBuilder builder = new BarCodeBuilder();
            //Set the Code text for the barcode
            builder.CodeText = QRCodeString;

            if (GetImageOnly)
            {
                // Set the code text location
                builder.CodeLocation = CodeLocation.None;
                //Get Only Imge
                builder.GetOnlyBarCodeImage();
            }
            //Set the symbology type to 
            builder.SymbologyType = Symbology.QR;

            builder.ImageHeight = ImageHeight;
            builder.ImageWidth = ImageWidth;

            //Saving barcode image to memory stream
            builder.BarCodeImage.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);

            return ms;
        }
        catch (Exception ex)
        {
            throw;
        }
        finally
        {
            //Dont dispose here
            // ms.Dispose();
        }

    }

その後、このメモリストリームを使用して、rdlcファイルで使用したデータセットに送信しました。

私の.csファイルコードで

   DatasetName = "DemoDataset";

                        DataTable table1 = new DataTable("Details");
                           table1.Columns.Add("Number");
                          table1.Columns.Add("BarcodeImage");

                        MemoryStream barcode = new MemoryStream();
                      barcode = GetQRCodeImage("34526172", 600, 300, false);

                        table1.Rows.Add(12222, barcode.ToArray());

私のrdlcコードで

テーブルでは、これらの値にアクセスするために単純な式を使用しました

=Fields!Number.Value
=Fields!BarcodeImage.Value

Number を正しく取得できます

しかし、BarcodeImage の場合、次のように値を取得していますSystem.ToArray()

何がうまくいかないのですか?

4

1 に答える 1