GroupDocs.Annotation for Net API is ’n biblioteek wat jou toelaat om aantekeninge by PDF, Word en ander dokumente op Mac, Windows of Ubuntu te voeg. GroupDocs.Annotation for Net is ’n inheemse Net API vir die bestuur van aantekeninge met omvattende ondersteuning vir die skep, byvoeging, redigeer, uitvee, onttrek en uitvoer van aantekeninge van beelde en verskeie ander dokumente. Die volledige lys van ondersteunde dokumentformate wat jy op hierdie [bladsy] kan sien (https://docs.groupdocs.com/annotation/net/supported-document-formats/). Hierdie biblioteek laat jou toe om nie net met DICOM dokument te werk nie, maar ook met baie ander tipe dokumente soos Word, Excel, PowerPoint, Outlook-e-posse, Visio, Adobe, OpenDocument, OpenOffice, Photoshop, AutoCad en vele ander. Die GroupDocs.Annotation for Net API laat jou toe om nuwe notas te skep en by te voeg, aantekeninge te wysig, opmerkings, annotasies te onttrek en dit uit dokumente te verwyder. Die biblioteek ondersteun 13 verskillende aantekeningtipes, insluitend teks, polilyn, area, onderstreep, punt, watermerk, pyl, ellips, teksvervanging, afstand, teksveld, hulpbronredaksie in PDF, HTML, Microsoft Word-dokumente, sigblaaie, diagramme, aanbiedings, tekeninge, beelde en baie ander lêerformate. Die voorbeeld (sien asseblief hieronder) demonstreer werk met DICOM dokument, in hierdie voorbeeld kan jy die hoofstappe sien van hoe om met GroupDocs te werk. Aantekening: Stel ’n lisensie op, maak ’n dokument oop waarmee jy wil werk, skep ’n annotasie, byvoeging van data-objekte om annotasie-eienskappe volgens u vereistes te stel en die resultaat op die nodige plek te stoor. Jy kan ook meer gedetailleerd kyk na die ondersteunde kenmerke op ons github bladsy, of in ons produk dokumentasie.
GroupDocs.Annotation maak dit maklik vir Net-ontwikkelaars om verskeie aantekeningtipes by DICOM-lêers binne enige Net-gebaseerde toepassing by te voeg deur ’n paar maklike stappe te implementeer.
GroupDocs.Annotation for Net API’s word op alle groot platforms en bedryfstelsels ondersteun. Voordat u die kode hieronder uitvoer, maak asseblief seker dat u die volgende voorvereistes op u stelsel geïnstalleer het.
//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 maak dit makliker vir Net-ontwikkelaars om aantekeningbesonderhede van DICOM-lêers binne enige Net-gebaseerde toepassing te verwyder deur ’n paar maklike stappe te implementeer.
// 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 maak dit makliker vir Net-ontwikkelaars om verskeie annotasie-eienskappe vanaf DICOM-lêers binne enige Net-gebaseerde toepassing op te dateer deur ’n paar maklike stappe te implementeer.
// 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 maak dit maklik vir Net-ontwikkelaars om dokumente te annoteer en annotasie-inligting uit DICOM-lêers binne enige Net-gebaseerde toepassing te onttrek deur ’n paar maklike stappe te implementeer.
// 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);
}
}
Voeg, verwyder, redigeer en onttrek aantekeninge by DICOM-lêer op die oomblik deur GroupDocs.Annotation Live Demos webwerf te besoek. Die lewendige demo het die volgende voordele
U hoef nie API af te laai nie
U hoef nie 'n kode te skryf nie
Laai net die bronlêer op
Kry aflaai -skakel om die lêer te stoor
DICOM is die akroniem vir Digital Imaging and Communications in Medicine en het betrekking op die veld van Mediese Informatika. DICOM is die kombinasie van lêerformaatdefinisie en ’n netwerkkommunikasieprotokol. DICOM gebruik die .DCM-uitbreiding. .DCM bestaan in twee verskillende formate, naamlik formaat 1.x en formaat 2.x. DCM Format 1.x is verder beskikbaar in twee weergawes normaal en verleng. DICOM word gebruik vir die integrasie van mediese beeldtoestelle soos drukkers, bedieners, skandeerders ens van verskeie verskaffers en bevat ook identifikasiedata van elke pasiënt vir uniekheid. DICOM-lêers kan tussen twee partye gedeel word as hulle in staat is om beelddata in DICOM-formaat te ontvang. Die kommunikasiedeel van DICOM is toepassingslaagprotokol en gebruik TCP/IP om tussen entiteite te kommunikeer. HTTP- en HTTPS-protokolle word gebruik vir die webdienste van DICOM. Weergawes wat deur webdienste ondersteun word, is 1.0, 1.1, 2 of later.
Lees meer Oor DICOM LêerformaatDateer annotasie-eienskappe op vanaf sommige van die gewilde lêerformate soos hieronder vermeld.
(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)