GroupDocs.Annotation for Net API és una biblioteca que us permet afegir anotacions a PDF, Word i altres documents a Mac, Windows o Ubuntu. GroupDocs.Annotation for Net és una API de xarxa nativa per gestionar anotacions amb suport complet per crear, afegir, editar, suprimir, extreure i exportar anotacions d’imatges i altres documents. La llista completa dels formats de document compatibles que podeu veure en aquesta pàgina. Aquesta biblioteca us permet treballar no només amb el document PPT sinó també amb molts altres tipus de documents com ara Word, Excel, PowerPoint, correus electrònics d’Outlook, Visio, Adobe, OpenDocument, OpenOffice, Photoshop, AutoCad i molts altres. L’API de GroupDocs.Annotation per a Net us permet crear i afegir notes noves, editar anotacions, extreure comentaris i anotacions i eliminar-los dels documents. La biblioteca admet 13 tipus d’anotacions diferents, com ara text, polilínia, àrea, subratllat, punt, filigrana, fletxa, el·lipse, substitució de text, distància, camp de text, redacció de recursos en PDF, HTML, documents de Microsoft Word, fulls de càlcul, diagrames, presentacions, dibuixos, imatges i molts altres formats de fitxer. L’exemple (vegeu a continuació) mostra com es treballa amb el document PPT, en aquest exemple podeu veure els passos principals de com treballar amb GroupDocs. Anotació: configureu una llicència, obriu un document amb el qual voleu treballar i creeu un anotació, afegint objectes de dades per establir propietats d’anotació segons els vostres requisits i desant el resultat al lloc necessari. També podeu veure més detalladament les funcions admeses a la nostra pàgina github o a la nostra documentació del producte
GroupDocs.Annotation facilita que els desenvolupadors de Net puguin afegir diversos tipus d’anotacions als fitxers PPT dins de qualsevol aplicació basada en Net mitjançant la implementació d’uns quants passos senzills.
GroupDocs.Annotation per a les API de xarxa són compatibles amb totes les plataformes i sistemes operatius principals. Abans d’executar el codi següent, assegureu-vos que teniu els següents requisits previs instal·lats al vostre sistema.
//Add text field annotation to the document from local disk
using (Annotator annotator = new Annotator("input.bmp"))
{
TextFieldAnnotation textField = new TextFieldAnnotation
{
BackgroundColor = 65535,
Box = new Rectangle(100, 100, 100, 100),
CreatedOn = DateTime.Now,
Text = "Some text",
FontColor = 65535,
FontSize = 12,
Message = "This is text field annotation",
Opacity = 0.7,
PageNumber = 0,
PenStyle = PenStyle.Dot,
PenWidth = 3,
FontFamily = "Arial",
TextHorizontalAlignment = HorizontalAlignment.Center,
Replies = new List
{
new Reply
{
Comment = "First comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Second comment",
RepliedOn = DateTime.Now
}
}
};
annotator.Add(textField);
annotator.Save("result.bmp");
}
GroupDocs.Annotation facilita als desenvolupadors de Net eliminar els detalls de les anotacions dels fitxers PPT dins de qualsevol aplicació basada en Net mitjançant la implementació d’uns quants passos senzills.
// 1- How to remove annotation from document using annotation index
using (Annotator annotator = new Annotator("result.bmp"))
{
annotator.Remove(0);
annotator.Save("removed.bmp");
}
// 2- How to remove annotation from document using annotation object
using (Annotator annotator = new Annotator("result.bmp"))
{
var tmp = annotator.Get();
annotator.Remove(tmp[0]);
annotator.Save("removed.bmp");
}
// 3- How to remove some annotations from document using list of ID’s
using (Annotator annotator = new Annotator("result.bmp"))
{
var idList = new List{1, 2, 3};
annotator.Remove(idList);
annotator.Save("removed.bmp");
}
// 4- How to remove some annotations from document using list of annotations
using (Annotator annotator = new Annotator("result.bmp"))
{
var tmp = annotator.Get();
annotator.Remove(tmp);
annotator.Save("removed.bmp");
}
GroupDocs.Annotation facilita que els desenvolupadors de Net actualitzin diverses propietats d’anotació dels fitxers PPT dins de qualsevol aplicació basada en Net mitjançant la implementació d’uns quants passos senzills.
// open annotated document
using (Annotator annotator = new Annotator("result.bmp"))
{
//assuming we are going to change some properties of existing annotation
AreaAnnotation updated = new AreaAnnotation
{
// It's important to set existed annotation Id
Id = 1,
BackgroundColor = 255,
Box = new Rectangle(0, 0, 50, 200),
CreatedOn = DateTime.Now,
Message = "This is updated annotation",
Replies = new List
{
new Reply
{
Comment = "Updated first comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Updated second comment",
RepliedOn = DateTime.Now
}
}
};
// update annotation
annotator.Update(updated);
annotator.Save("result.bmp");
}
GroupDocs.Annotation facilita als desenvolupadors de Net anotar documents i extreure informació d’anotacions dels fitxers PPT dins de qualsevol aplicació basada en Net mitjançant la implementació d’uns quants passos senzills.
// for using this example input file ("annotated.bmp") must be with annotations
using (Annotator annotator = new Annotator("annotated.bmp"))
{
List annotations = annotator.Get();
XmlSerializer formatter = new XmlSerializer(typeof(List));
using (FileStream fs = new FileStream("annotations.xml", FileMode.Create))
{
fs.SetLength(0);
formatter.Serialize(fs, annotations);
}
}
Afegiu, suprimiu, editeu i extreu anotacions al fitxer PPT ara mateix visitant el lloc web GroupDocs.Annotation Live Demos. La demostració en directe té els següents avantatges
No cal descarregar API
No cal escriure cap codi
Només heu de penjar el fitxer d'origen
Obteniu l'enllaç de descàrrega per desar el fitxer
Un fitxer amb extensió PPT representa un fitxer de PowerPoint que consisteix en una col·lecció de diapositives per mostrar-les com a presentació de diapositives. Especifica el format de fitxer binari utilitzat per Microsoft PowerPoint 97-2003. Un fitxer PPT pot contenir diversos tipus d’informació com ara text, vinyetes, imatges, multimèdia i altres objectes OLE incrustats. Microsoft va crear un format de fitxer més nou per a PowerPoint, conegut com PPTX, a partir del 2007 que es basa en Office OpenXML i és diferent d’aquest format de fitxer binari. Diversos altres programes d’aplicació com OpenOffice Impress i Apple Keynote també poden crear fitxers PPT.
Llegeix més Sobre el format de fitxer PPTActualitzeu les propietats d’anotació d’alguns dels formats de fitxer populars, tal com s’indica a continuació.
(Adobe Portable Document Format)
(Microsoft Word Document)
(Microsoft Word Macro-Enabled Document)
(Microsoft Word Open XML Document)
(Microsoft Word Document Template)
(Word Open XML Document Template)
(Rich Text Document)
(Open Document Text)
(Microsoft Excel Binary File Format)
(Microsoft Excel Open XML Spreadsheet)
(Microsoft Excel Macro-Enabled Spreadsheet)
(Microsoft Excel Binary Worksheet)
(Open Document Spreadsheet)
(PowerPoint Presentation)
(PowerPoint Open XML Presentation)
(PowerPoint Open XML Slide Show)
(Microsoft PowerPoint Template)
(Microsoft PowerPoint Presentation)
(Microsoft PowerPoint 97-2003 Slide Show)
(OpenDocument Presentation)
(HyperText Markup Language)
(Tagged Image File Format)
(JPEG Image)
(Portable Network Graphic)
(E-mail Message)
(Microsoft Outlook E-mail Message)
(Microsoft Visio 2003-2010 Drawing)
(Microsoft Visio Drawing)
(Microsoft Visio 2003-2010 Stencil)
(Microsoft Visio 2013 Stencil)
(Autodesk Design Data Formats)
(AutoCAD Drawing Interchange)
(Digital Imaging and Communications in Medicine)
(Windows Metafile)
(Enhanced Metafile Format)