我正在使用Barcode Rendering Framework來生成條形碼。我已經下載了他們的DLL。我可以看到,它是如何在Windows應用程序中完成的。我想要做同樣的事情,即生成條形碼並在網絡應用程序中使用它。 以下是可以使用的問題的鏈接。 Free Barcode API for .NET和下面的代碼:在Web應用程序中使用Barcode呈現框架生成條碼
Code39BarcodeDraw barcode39 = BarcodeDrawFactory.Code39WithoutChecksum;
System.Drawing.Image img = barcode39.Draw("Hello World", 40);
pictureBox1.Image = barcode39.Draw("Hello World", 40);
我如何可以使用Web應用程序相同的功能。
感謝您的編輯幫助。下次會照顧。 – Ankur