BarcodeGenerator
محتويات
[
يخفي
]BarcodeGenerator class
BarcodeGenerator لإنشاء صور الباركود الخلفية.
الرموز المدعومة: 1D: Codabar ، Code11 ، Code128 ، Code39Standard ، Code39Extended Code93Standard ، Code93Extended ، EAN13 ، EAN8 ، Interleaved2of5 ، MSI ، Standard2of5 ، UPCA ، UPCA14 ، مخطط ، SingaporePost … 2D: Aztec، DataMatrix، PDf417، QR code …
public sealed class BarcodeGenerator : Component
المنشئون
اسم | وصف |
---|---|
BarcodeGenerator(BaseEncodeType) | إنشاء مثيل من BarcodeGenerator. |
BarcodeGenerator(BaseEncodeType, string) | إنشاء مثيل من BarcodeGenerator. |
الخصائص
اسم | وصف |
---|---|
BarcodeType { get; set; } | نوع ترميز الباركود . |
CodeText { get; set; } | النص المراد ترميزه . |
Parameters { get; } | معلمات التوليد . |
طُرق
اسم | وصف |
---|---|
static ImportFromXml(Stream) | يتم استيراد خصائص BarCode من xml-Stream المحدد وإنشاء مثيل BarcodeGenerator. |
static ImportFromXml(string) | يستورد خصائص BarCode من ملف xml المحدد وينشئ مثيل BarcodeGenerator. |
DrawWpf(DrawingContext) | رسم صورة الرمز الشريطي على قماش WPF. |
ExportToXml(Stream) | تصدير خصائص BarCode إلى xml-Stream المحدد |
ExportToXml(string) | تصدير خصائص BarCode إلى ملف xml المحدد |
GenerateBarCodeImage() | قم بإنشاء صورة الباركود ضمن الإعدادات الحالية. |
Save(string) | حفظ صورة الباركود في ملف محدد. |
Save(Stream, BarCodeImageFormat) | حفظ صورة الباركود للتدفق بتنسيق محدد. |
Save(string, BarCodeImageFormat) | حفظ صورة الباركود في ملف معين بتنسيق محدد. |
أمثلة
يوضح هذا النموذج كيفية إنشاء صورة رمز شريطي وحفظها.
[C#]
using(var generator = new BarcodeGenerator(EncodeTypes.Code128))
{
generator.CodeText = "123ABC";
generator.Save("code128.png");
}
أنظر أيضا
- مساحة الاسم Aspose.BarCode.Generation
- المجسم Aspose.BarCode