Sort Score
Result 10 results
Languages All
Labels All
Results 151 - 160 of 334 for

slides comparison

(0.04 sec)
  1. Convert spreadsheets | Documentation

    Follow this guide and learn how to convert MS Excel workbooks - XLSX, XLS, XLSB using JavaScript language and GroupDocs.Conversion for Node.js via Java....Comparison Product Solution GroupDocs...are converted to presentation slides. Similarly to other conversions...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  2. Convert presentations | Documentation

    This article demonstrates how to convert PowerPoint presentations of PPT, PPTX, ODP to other formats with couple lines of Java code....Comparison Product Solution GroupDocs...software replacement for old slide projector devices. Microsoft...

    docs.groupdocs.com/conversion/java/convert/pres...
  3. Convert presentations | Documentation

    This article demonstrates how to convert PowerPoint presentations of PPT, PPTX, ODP to other formats with couple lines of C# code....Comparison Product Solution GroupDocs...software replacement for old slide projector devices. Microsoft...

    docs.groupdocs.com/conversion/net/convert/prese...
  4. Adding text watermarks | Documentation

    Following code snippet shows how to add text watermark to a document. If the document consists of multiple parts (pages, worksheets, Slides, frames etc), the watermark will be added to all of them. advanced_usage.adding_text_watermarks.AddTextWatermark // Specify an absolute or relative path to your image. Ex: "C:\\Docs\\image.png" Watermarker watermarker = new Watermarker("image.png"); // Initialize the font to be used for watermark Font font = new Font("Arial", 19, FontStyle.Bold | FontStyle.Italic); // Create the watermark object TextWatermark watermark = new TextWatermark("Test watermark", font); // Set watermark properties watermark....Comparison Product Solution GroupDocs...multiple parts (pages, worksheets, slides, frames etc), the watermark...

    docs.groupdocs.com/watermark/java/adding-text-w...
  5. Convert presentations | Documentation

    This article demonstrates how to convert PowerPoint presentations of PPT, PPTX, ODP to other formats with couple lines of Java code....Comparison Product Solution GroupDocs...software replacement for old slide projector devices. Microsoft...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  6. Convert PDF files | Documentation

    This article demonstrates how to convert PDF to Word, Excel, PowerPoint and image formats with GroupDocs.Conversion for Node.js via Java....Comparison Product Solution GroupDocs...to accommodate data such as slides, shapes, text, animations,...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  7. Adding text watermarks | Documentation

    The GroupDocs.Watermark allows to add text watermarks to documents which may consists of pages, worksheets, Slides or frames....Comparison Product Solution GroupDocs...multiple parts (pages, worksheets, slides, frames, etc.), the watermark...

    docs.groupdocs.com/watermark/net/adding-text-wa...
  8. Convert PDF files | Documentation

    This article demonstrates how to convert PDF to Word, Excel, PowerPoint and image formats with GroupDocs.Conversion for Java....Comparison Product Solution GroupDocs...to accommodate data such as slides, shapes, text, animations,...

    docs.groupdocs.com/conversion/java/convert/pdf/
  9. Convert PDF files | Documentation

    This article demonstrates how to convert PDF to Word, Excel, PowerPoint, image and other formats with GroupDocs.Conversion for .NET....Comparison Product Solution GroupDocs...to accommodate data such as slides, shapes, text, animations,...

    docs.groupdocs.com/conversion/net/convert/pdf/
  10. Working with slide backgrounds | Documentation

    Extracting information about all slide backgrounds The API allows you to extract information about all the slide backgrounds in a PowerPoint document as shown in the following code sample using method getBackgroundImage() of PresentationSlide.getImageFillFormat(). advanced_usage.add_watermarks_to_presentations.PresentationGetSlideBackgroundsInformation PresentationLoadOptions loadOptions = new PresentationLoadOptions(); // Specify an absolute or relative path to your document. Ex: "C:\\Docs\\presentation.pptx" Watermarker watermarker = new Watermarker("presentation.pptx", loadOptions); PresentationContent content = watermarker.getContent(PresentationContent.class); for (PresentationSlide slide : content.getSlides()) { if (slide....Comparison Product Solution GroupDocs...Working with slide backgrounds Working with slide backgrounds...

    docs.groupdocs.com/watermark/java/working-with-...