اذهب إلى المحتوى

السؤال

Recommended Posts

  • 0
نشر

إليك هذه الخطوات لإنشاء تطبيق بلغة#C يولّد كودبار:

  1. قم بتحميل dll من الموقع
  2. افتح برنامج فيزوال بيسيك
  3. أنشئ تطبيق بلغة #C وأضف OnBarcode.Barcode.Winforms.dll
  4. انشئ مدخلات تقبل بيانات ومسار لحفظ صور توليد Barcode.
  5. لتوليد الباركود على شكل صور، أضف هذا الكود لزر التوليد:
    private void GenerateBacode(string _data, string _filename)
            {
                Linear barcode = new Linear();
                barcode.Type = BarcodeType.CODE11;
                barcode.Data = _data;
                barcode.drawBarcode(_filename);
            }
            private void GenerateQrcode(string _data, string _filename)
            {
                QRCode qrcode = new QRCode();
                qrcode.Data = _data;
                qrcode.DataMode = QRCodeDataMode.Byte;
                qrcode.UOM = UnitOfMeasure.PIXEL;
                qrcode.X = 3;
                qrcode.LeftMargin = 0;
                qrcode.RightMargin = 0;
                qrcode.TopMargin = 0;
                qrcode.BottomMargin = 0;
                qrcode.Resolution = 72;
                qrcode.Rotate = Rotate.Rotate0;
                qrcode.ImageFormat = ImageFormat.Gif;
                qrcode.drawBarcode(_filename);
            }

    التطبيق يمكن من توليد نوعين من الباركود، النوع الاعتيادي ونوع Qrcode:

  6. شكل الباركود:
    qrcode.gif

وBarcode.gif
مصادر:

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...