تحويل BMP إلى XLS

مكتبة C# لتحويل BMP إلى XLS

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

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

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

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

C# مثال على الكود لتحويل BMP إلى XLS باستخدام 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.bmp";
    string format = "xls";
    string password = null;
    string outPath = null;
    string storageName = null;
    string destFile = "Book1.xls";
    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);
        }
    }


كيفية استخدام Cells Cloud SDK for Net لتحويل ملفات Excel إلى تنسيقات أخرى BMP إلى XLS


  1. تسجيل حساب فيلوحة القيادة للحصول على تفاصيل الحصص والترخيص API مجانًا
  2. قم بتهيئة Cells API باستخدام معرف العميل وسر العميل وعنوان URL الأساسي وإصدار API.
  3. استخدم طريقة `PutConvertWorkbook` لاسترداد الدفق الناتج.


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


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