番号50または51のIDAutomationHC39Mを生成しようとしていますが、そのバーコードが生成されますが、スキャンではその詳細番号を取得できません。IDAutomationHC39Mの2桁のバーコードを作成しますが、スキャンしません。
同じように私は14757のバーコードを作成することができます。その場合、バーコードを正しくスキャンすることができます。
2桁のバーコードをスキャンする方法を教えてください。
以下のコードで私が間違っていることはありますか?まだ通過文字列から数56とバーコードとも削除*下で発生
public void generateBarcode(int id)
{
if (plBarCode != null)
{
string barCode = "";
barCode = Convert.ToString(id);
System.Web.UI.WebControls.Image imgBarCode = new System.Web.UI.WebControls.Image();
using (Bitmap bitMap = new Bitmap(barCode.Length * 70, 70))
{
using (Graphics graphics = Graphics.FromImage(bitMap))
{
Font oFont = new Font("IDAutomationHC39M", 30);
PointF point = new PointF(2f, 2f);
SolidBrush blackBrush = new SolidBrush(Color.Black);
SolidBrush whiteBrush = new SolidBrush(Color.White);
graphics.FillRectangle(whiteBrush, 0, 0, bitMap.Width, bitMap.Height);
int w = barCode.Length * 40;
Graphics oGraphics = Graphics.FromImage(bitMap);
PointF oPoint = new PointF(2f, 2f);
SolidBrush oBrushWrite = new SolidBrush(Color.Black);
SolidBrush oBrush = new SolidBrush(Color.White);
oGraphics.FillRectangle(oBrush, 0, 0, w, 100);
oGraphics.DrawString("*" + barCode + "*", oFont, oBrushWrite, oPoint);
}
using (MemoryStream ms = new MemoryStream())
{
bitMap.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
byte[] byteImage = ms.ToArray();
Convert.ToBase64String(byteImage);
imgBarCode.ImageUrl = "data:image/png;base64," + Convert.ToBase64String(byteImage);
}
plBarCode.Controls.Add(imgBarCode);
}
}
}
バーコードのための十分なスペースはありますか? DrawStringは、予想より多くの部屋を使用することがあります。 –
'少量の文字をエンコードしようとすると、バーコードに最低4文字を読み取るように設定されているので、スキャナが最小量をスキャンできることを確認することをお勧めします。 http://idautomation.blogspot.nl/2011/07/top-5-reasons-why-barcode-font-wont.html ;-) – Stefan
Btw、これに '*'マークが含まれているかどうかはわかりません。 – Stefan