I'm trying to create a barcode image that I could then upload to a database. I've been trying to fix this for days now, and I just don't seem to get it. code128.CreateDrawingImage takes 2 arguments which are System.Drawing.Color for fore and background, but when I add those, it tells me that it "Cannot implicitly convert type System.Drawing.Image to iTextSharp.text.image"
// Create barcode
Barcode128 code128 = new Barcode128();
code128.CodeType = Barcode.CODE128_UCC;
code128.Code = "123456789";
// Generetate barcode img
iTextSharp.text.Image img128 = code128.CreateDrawingImage(System.Drawing.Color.Black, System.Drawing.Color.White);