Sort Score
Result 10 results
Languages All
Labels All
Results 2,301 - 2,310 of 4,530 for

packaging

(0.14 sec)
  1. مسح رمز الاستجابة السريعة من ملف PDF باستخدام C#

    تقدم هذه المقالة دليلاً حول كيفية استخراج رمز الاستجابة السريعة QR من ملف PDF باستخدام C#، بما في ذلك مثال للكود يوضح كيفية مسح رمز الاستجابة السريعة QR من ملف PDF باستخدام C# بشكل فعال....يمكن تثبيتها بسهولة عبر NuGet Package Manager لـ استخراج رمز الاستجابة...

    kb.groupdocs.com/ar/parser/net/scan-qrcode-from...
  2. Edit and Manage Metadata in Node.js Apps - Grou...

    Temukan cara menggunakan GroupDocs.Metadata for Node.js untuk mengekstrak, memperbarui, dan menghapus metadata dalam aplikasi Anda....js-via-Java/ Install Necessary Packages: npm install Jalankan Contoh:...// Remove detected metadata packages and log the properties removed...

    blog.groupdocs.com/id/metadata/edit-metadata-in...
  3. Pridėkite tekstinį vandens ženklą prie RTF naud...

    Sužinokime, kaip pridėti tekstinį vandens ženklą prie RTF naudojant C#. Be to, gausite kodo pavyzdį, kuriame parodyta, kaip C# įterpti tekstinį vandens ženklą į RTF....galite padaryti naudodami NuGet Package Manager, esančią Visual Studio...

    kb.groupdocs.com/lt/watermark/net/add-text-wate...
  4. วิธีแปลง RTF เป็น HTML ใน C#

    ตรวจสอบคำแนะนำโดยละเอียดเพื่อทำการแปลงเอกสารและวิธีแปลง RTF เป็น HTML ใน C# ตรวจสอบโค้ดตัวอย่างสำหรับความสามารถ RTF เป็น HTML C#...แพ็คเกจที่จำเป็นจาก NuGet package manager และเพิ่มการอ้างอิง...

    kb.groupdocs.com/th/conversion/net/how-to-conve...
  5. วิธีแปลง HTML เป็น JPG โดยใช้ C#

    บทความสั้นๆ นี้จะสาธิตวิธีแปลง HTML เป็น JPG โดยใช้ C# โดยไม่ต้องติดตั้งซอฟต์แวร์ของบริษัทอื่น และให้ตัวอย่างโค้ดเพื่อส่งออก HTML เป็น JPG ใน C#...เป็น JPG โดยใช้ C# ใช้ NuGet package manager เพื่อติดตั้ง GroupDocs...

    kb.groupdocs.com/th/conversion/net/how-to-conve...
  6. วิธีแปลง HTML เป็น ODT โดยใช้ C#

    แปลง HTML เป็น ODT อย่างรวดเร็วโดยใช้ C# พร้อมไลบรารีการแปลงยอดนิยมพร้อมกับตัวอย่างโค้ดเพื่อส่งออก HTML เป็น ODT ใน C# บนระบบปฏิบัติการที่ใช้กันทั่วไป...เป็น ODT โดยใช้ C# ใช้ NuGet package manager เพื่อติดตั้ง GroupDocs...

    kb.groupdocs.com/th/conversion/net/how-to-conve...
  7. Comment convertir TXT en PPTX en utilisant C#

    Cet article fournit toutes les étapes pour convertir TXT en PPTX en utilisant C # sur les systèmes d'exploitation couramment utilisés. Il inclut également un exemple de code pour transformer TXT en PPTX à l'aide de C#....utilisant le gestionnaire de packages NuGet Ajouter une référence...

    kb.groupdocs.com/fr/conversion/net/how-to-conve...
  8. Comment comparer des images en C#

    Voulez-vous effectuer facilement une comparaison d'images, puis consultez le guide pour comparer des images en C# et apprendre à créer la fonctionnalité de comparaison d'images en C# ?...images en C# Installez le package GroupDocs.Comparison for .NET...

    kb.groupdocs.com/fr/comparison/net/how-to-compa...
  9. Extracting Common Image Information | GroupDocs

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Extract the root metadata package Use the property to obtain...

    docs.groupdocs.com/metadata/net/extracting-comm...
  10. Working with metadata in GIF images | GroupDocs

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Extract the root metadata package Use the property to obtain...

    docs.groupdocs.com/metadata/net/working-with-me...