تحويل TXT إلى WMF

مكتبة C# لتحويل TXT إلى WMF

استخدم التحويل API من Cells Cloud لإنشاء سير عمل جدول بيانات مخصص في مشاريع Net. يعد هذا حلاً احترافيًا لتحويل TXT إلى WMF وتنسيقات المستندات الأخرى عبر الإنترنت باستخدام C#.

تحويل TXT إلى WMF باستخدام Cells Cloud SDK لـ C#

API
PUT
https://api.aspose.cloud/v3.0/cells/convert

يمكن أن يكون تحويل تنسيقات الملفات من TXT إلى WMF مهمة معقدة. يتعامل SDK C# الخاص بنا مع جميع تحويلات تنسيق TXT إلى WMF مع الحفاظ على المحتوى الهيكلي والمنطقي الرئيسي لجدول بيانات TXT المصدر. توفر مكتبتنا C# حلاً احترافيًا لتحويل ملفات TXT إلى WMF عبر الإنترنت. يعمل Cloud SDK على تمكين مطوري C# من الحصول على وظائف قوية ويضمن إخراج WMF عالي الجودة.

C# مثال على الكود لتحويل TXT إلى WMF باستخدام Cells Cloud SDK

    // For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
    string name = "Book1.txt";
    string format = "wmf";
    string password = null;
    string outPath = null;
    string storageName = null;
    string destFile = "Book1.wmf";
    CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("ProductClientId"), Environment.GetEnvironmentVariable("ProductClientSecret"));
    using (Stream stream = cellsApi.CellsWorkbookPutConvertWorkbook(File.OpenRead(name), format, password, outPath, storageName))
    {
        using (Stream outStream = File.OpenWrite(destFile))
        {
            stream.CopyTo(outStream);
        }
    }

كيفية تحويل TXT إلى WMF باستخدام مكتبة Cells Cloud Net.

  1. تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
  2. قم بتثبيت مكتبة C# وأضف المرجع (استيراد المكتبة) إلى مشروعك.
  3. افتح الملف المصدر في C#
  4. استخدم طريقة `PutConvertWorkbook` لاسترداد الدفق الناتج.

متطلبات النظام

  1. NET Framework 4.5.2 أو الأحدث
  2. نت ستاندرد 2.0 أو أحدث