GroupDocs.Annotation สำหรับ Net API เป็นไลบรารีที่ให้คุณเพิ่มคำอธิบายประกอบลงใน PDF, Word และเอกสารอื่นๆ บน Mac, Windows หรือ Ubuntu GroupDocs.Annotation for Net เป็น Net API แบบเนทีฟสำหรับจัดการคำอธิบายประกอบด้วยการสนับสนุนที่ครอบคลุมสำหรับการสร้าง การเพิ่ม การแก้ไข การลบ การแยก และการส่งออกคำอธิบายประกอบจากรูปภาพและเอกสารอื่นๆ มากมาย รายการรูปแบบเอกสารที่รองรับทั้งหมดที่คุณสามารถดูได้ในหน้า ไลบรารีนี้ช่วยให้คุณทำงานได้ไม่เฉพาะกับเอกสาร JPEG เท่านั้น แต่ยังใช้กับเอกสารประเภทอื่นๆ ได้อีกมากมาย เช่น Word, Excel, PowerPoint, อีเมล Outlook, Visio, Adobe, OpenDocument, OpenOffice, Photoshop, AutoCad และอื่นๆ อีกมากมาย GroupDocs.Annotation สำหรับ Net API ช่วยให้คุณสร้างและเพิ่มบันทึกใหม่ แก้ไขคำอธิบายประกอบ แยกความคิดเห็น คำอธิบายประกอบ และลบออกจากเอกสาร ไลบรารีรองรับคำอธิบายประกอบที่แตกต่างกัน 13 ประเภท ได้แก่ ข้อความ โพลีไลน์ พื้นที่ ขีดเส้นใต้ จุด ลายน้ำ ลูกศร วงรี การแทนที่ข้อความ ระยะทาง ช่องข้อความ การแก้ไขทรัพยากรในรูปแบบ PDF, HTML, เอกสาร Microsoft Word, สเปรดชีต, ไดอะแกรม, งานนำเสนอ, ภาพวาด รูปภาพ และรูปแบบไฟล์อื่นๆ อีกมากมาย ตัวอย่าง (โปรดดูด้านล่าง) สาธิตการทำงานกับเอกสาร JPEG ในตัวอย่างนี้ คุณสามารถดูขั้นตอนหลักของวิธีการทำงานกับ GroupDocs คำอธิบายประกอบ: ตั้งค่าใบอนุญาต เปิดเอกสารที่คุณต้องการใช้งาน การสร้าง คำอธิบายประกอบ เพิ่มวัตถุข้อมูลเพื่อตั้งค่าคุณสมบัติคำอธิบายประกอบตามความต้องการของคุณ และบันทึกผลลัพธ์ไปยังตำแหน่งที่ต้องการ นอกจากนี้ คุณยังสามารถดูรายละเอียดเพิ่มเติมเกี่ยวกับคุณสมบัติที่รองรับบน Github เพจ หรือในผลิตภัณฑ์ของเรา เอกสารประกอบ.
GroupDocs.Annotation ทำให้นักพัฒนา Net สามารถเพิ่มประเภทคำอธิบายประกอบต่างๆ ลงในไฟล์ JPEG ได้อย่างง่ายดายภายในแอปพลิเคชันบน Net โดยดำเนินการตามขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
GroupDocs คำอธิบายประกอบสำหรับ Net API ได้รับการสนับสนุนบนแพลตฟอร์มและระบบปฏิบัติการหลักทั้งหมด ก่อนดำเนินการโค้ดด้านล่าง โปรดตรวจสอบว่าคุณได้ติดตั้งข้อกำหนดเบื้องต้นต่อไปนี้ในระบบของคุณแล้ว
//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 ช่วยให้นักพัฒนา Net สามารถลบรายละเอียดคำอธิบายประกอบออกจากไฟล์ JPEG ภายในแอปพลิเคชันบน Net ได้ง่ายขึ้นโดยใช้ขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
// 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 ช่วยให้นักพัฒนา Net สามารถอัปเดตคุณสมบัติคำอธิบายประกอบต่างๆ จากไฟล์ JPEG ภายในแอปพลิเคชันบน Net ได้ง่ายขึ้น โดยใช้ขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
// 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 ช่วยให้นักพัฒนา Net สามารถใส่คำอธิบายประกอบในเอกสารและดึงข้อมูลคำอธิบายประกอบจากไฟล์ JPEG ภายในแอปพลิเคชันบน Net ได้ง่ายๆ โดยใช้ขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
// 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);
}
}
เพิ่ม ลบ แก้ไข และแยกคำอธิบายประกอบลงในไฟล์ JPEG ทันทีโดยไปที่เว็บไซต์ GroupDocs.Annotation Live Demos การสาธิตสดมีประโยชน์ดังต่อไปนี้
ไม่จำเป็นต้องดาวน์โหลดเอพีไอ
ไม่จำเป็นต้องเขียนรหัสใดๆ
เพียงแค่อัปโหลดแฟ้มแหล่งที่มา
รับลิงค์ดาวน์โหลดเพื่อบันทึกไฟล์
JPEG เป็นรูปแบบภาพประเภทหนึ่งที่บันทึกโดยใช้วิธีการบีบอัดแบบสูญเสียข้อมูล ภาพที่ส่งออกเป็นผลมาจากการบีบอัด เป็นการแลกเปลี่ยนระหว่างขนาดพื้นที่จัดเก็บและคุณภาพของภาพ ผู้ใช้สามารถปรับระดับการบีบอัดเพื่อให้ได้ระดับคุณภาพที่ต้องการในขณะเดียวกันก็ลดขนาดการจัดเก็บลง คุณภาพของภาพจะได้รับผลกระทบเพียงเล็กน้อยหากใช้การบีบอัด 10:1 กับภาพ ยิ่งค่าการบีบอัดสูงเท่าใด คุณภาพของภาพก็จะยิ่งลดลงเท่านั้น รูปแบบไฟล์ภาพ JPEG ได้รับการกำหนดมาตรฐานโดย Joint Photographic Experts Group และด้วยเหตุนี้จึงใช้ชื่อ JPEG รูปแบบนี้เป็นทางเลือกในการจัดเก็บและส่งภาพถ่ายบนเว็บ ขณะนี้ระบบปฏิบัติการเกือบทั้งหมดมีโปรแกรมดูที่รองรับการแสดงภาพ JPEG ซึ่งมักจะจัดเก็บด้วยนามสกุล JPG เช่นกัน แม้แต่เว็บเบราว์เซอร์ก็รองรับการแสดงภาพ JPEG
อ่านต่อ เกี่ยวกับรูปแบบไฟล์ JPEGอัปเดตคุณสมบัติคำอธิบายประกอบจากรูปแบบไฟล์ยอดนิยมบางรูปแบบตามที่ระบุไว้ด้านล่าง
(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)