您好,
使用Spread的BarCodeCellType能够生成二维码,并将其保存为指定的图片。例子代码如下:
BarCodeCellType barCode = new BarCodeCellType();
barCode.DisplayMode = BarCodeDisplayMode.Image;
barCode.Type = new FarPoint.Win.Spread.CellType.BarCode.Code39();//UPC, Code39等
fpSpread1.ActiveSheet.Cells[0, 0].CellType = barCode;
fpSpread1.ActiveSheet.Cells[0, 0].Value = 12345678;
Image image = barCode.CreateBitmap("12345678");
image.Save(@"E:\temp.jpg");
Spread不支持在生成的二维码中间加图片。 |