Sort Score
Result 10 results
Languages All
Labels All
Results 1,681 - 1,690 of 1,795 for

errores pdf

(0.06 sec)
  1. Load document from Azure Blob Storage | Documen...

    The page describes how to load Pdf, Word, Excel, PowerPoint documents from Azure Blob storage when using GroupDocs.Annotation for .NET....pdf" ; using ( Annotator annotator...); annotator . Save ( "result.pdf" ); } public static Stream DownloadFile...

    docs.groupdocs.com/annotation/net/load-document...
  2. Add ellipse annotation | Documentation

    The page describes how to add ellipse annotation to a document using GroupDocs.Annotation for .NET....pdf" )) { EllipseAnnotation ellipse...); annotator . Save ( "result.pdf" ); } Was this page helpful?...

    docs.groupdocs.com/annotation/net/add-ellipse-a...
  3. Adding watermark to images inside a document | ...

    This article will help, if you want to add watermark to images inside a document then it can be possible using GroupDocs.Watermark....pdf" using ( Watermarker watermarker...new Watermarker ( "document.pdf" )) { // Initialize text watermark...

    docs.groupdocs.com/watermark/net/adding-waterma...
  4. Versioning of annotated documents | Documentation

    The page describes how to manage different versions of document using GroupDocs.Annotation for .NET API....pdf" )) { annotator . Update ( new...}); annotator . Save ( "result.pdf" , new SaveOptions { Version...

    docs.groupdocs.com/annotation/net/versioning-of...
  5. Migration Notes | Documentation

    Why to migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Annotation for .NET since version 19.8: The Annotator class introduced as a single entry point to manage the document annotating process to any supported file format (instead of AnnotationImageHandler class in previous versions). The overall rendering speed improved dramatically by saving rendered page as soon as it was rendered, not when all pages list were rendered....pdf" , FileMode . Open )) { // Export...annotator = new Annotator ( "input.pdf" )) { // Add annotations annotator...

    docs.groupdocs.com/annotation/net/migration-notes/
  6. Add strikeout annotation | Documentation

    The page describes how to add strikeout annotation to a document using GroupDocs.Annotation for .NET....pdf" )) { StrikeoutAnnotation strikeout...); annotator . Save ( "result.pdf" ); } Was this page helpful?...

    docs.groupdocs.com/annotation/net/add-strikeout...
  7. Add watermark annotation | Documentation

    The page describes how to add watermark annotation to a document using GroupDocs.Annotation for .NET....pdf" )) { WatermarkAnnotation watermark...); annotator . Save ( "result.pdf" ); } . Was this page helpful...

    docs.groupdocs.com/annotation/net/add-watermark...
  8. Add replies to annotation | Documentation

    The page describes how to add annotation replies when collaborate over document using GroupDocs.Annotation for .NET API....pdf" )) { User user1 = new User {...); annotator . Save ( "result.pdf" ); } Was this page helpful?...

    docs.groupdocs.com/annotation/net/add-replies-t...
  9. Add highlight annotation | Documentation

    The page describes how to add highlight annotation to a document using GroupDocs.Annotation for .NET....pdf" )) { HighlightAnnotation highlight...); annotator . Save ( "result.pdf" ); } Was this page helpful?...

    docs.groupdocs.com/annotation/net/add-highlight...
  10. Classify document by path | Documentation

    Classify document by path with IAB-2 taxonomy and return 2 best results Classifying of the document could be performed with the next steps Call Classify method for “document.Pdf” file in the current (".") directory with IAB-2 taxonomy and return 2 best results. Handle possible ApiException try { var response = classifier.Classify("document.Pdf", ".", 3, Taxonomy.Iab2); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); } Precisely classify document by path with Documents taxonomy and return 4 best results Call Classify method for “document....pdf” file in the current (".") directory...classifier . Classify ( "document.pdf" , "." , 3 , Taxonomy . Iab2...

    docs.groupdocs.com/classification/net/classify-...