本文介绍了C#中的垂直条码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 亲爱的专家,我需要一个解决方案,将9个条形码中的3个作为垂直方向。请查看以下代码段。这是解决方案,但问题是扫描仪无法识别它。I need a solution for dispalying 3 of 9 barcode as vertical direction. Please have a look in the following code snippet. That is giving solution but the problem is scanner not able to recognise it. Rectangle rect = panel1.ClientRectangle;Size s = panel1.Size;Bitmap bmp = new Bitmap(panel1.Width, panel1.Height);panel1.DrawToBitmap(bmp, rect);bmp.RotateFlip(RotateFlipType.Rotate270FlipNone);bmp.Save(@"c:\test.jpg", System.Drawing.Imaging.ImageFormat.Jpeg); 推荐答案 这篇关于C#中的垂直条码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-17 23:58