GroupDocs.Annotation for Java API, PDF, Word ve Mac, Windows veya Ubuntu’daki diğer belgelere ek açıklamalar eklemenizi sağlayan bir kitaplıktır. GroupDocs.Annotation for Java, resimlerden ve diğer çeşitli belgelerden açıklamaları oluşturmaya, eklemeye, düzenlemeye, silmeye, ayıklamaya ve dışa aktarmaya yönelik kapsamlı destekle açıklamaları yönetmeye yönelik yerel bir Java API’sidir. Bu sayfada görebileceğiniz desteklenen belge biçimlerinin tam listesi. Bu kitaplık, yalnızca VSDX belgesiyle değil, Word, Excel, PowerPoint, Outlook e-postaları, Visio, Adobe, OpenDocument, OpenOffice, Photoshop, AutoCad ve diğerleri gibi diğer birçok belge türüyle çalışmanıza olanak tanır. GroupDocs.Annotation for Java API, yeni notlar oluşturmanıza ve eklemenize, ek açıklamaları düzenlemenize, yorumları, açıklamaları ayıklamanıza ve bunları belgelerden kaldırmanıza olanak tanır. Kitaplık, Metin, Çoklu Çizgi, Alan, Altı Çizili, Nokta, Filigran, Ok, Elips, Metin Değiştirme, Mesafe, Metin Alanı, PDF’de Kaynak Redaksiyonu, HTML, Microsoft Word belgeleri, elektronik tablolar, diyagramlar, sunumlar dahil olmak üzere 13 farklı açıklama türünü destekler. çizimler, resimler ve diğer birçok dosya formatı. Örnek (lütfen aşağıya bakın) VSDX belgesiyle çalışmayı gösterir, bu örnekte GroupDocs ile çalışmanın ana adımlarını görebilirsiniz. Ek Açıklama: Bir lisans ayarlayın, çalışmak istediğiniz bir belgeyi açın, bir ek açıklama, açıklama özelliklerini ihtiyaçlarınıza göre ayarlamak için veri nesneleri ekleme ve sonucu gereken yere kaydetme. Ayrıca github sayfa veya ürün documentation.
GroupDocs.Annotation Java geliştiricilerinin, birkaç kolay adımı uygulayarak herhangi bir Java tabanlı uygulama içindeki VSDX dosyalarına çeşitli ek açıklama türleri eklemesini kolaylaştırır.
GroupDocs.Annotation for Java API’leri tüm büyük platformlarda ve işletim sistemlerinde desteklenir. Aşağıdaki kodu çalıştırmadan önce lütfen sisteminizde aşağıdaki önkoşulların yüklü olduğundan emin olun.
// Create an instance of Reply class and add comments
Reply firstReply = new Reply();
firstReply.setComment("First comment");
firstReply.setRepliedOn(Calendar.getInstance().getTime());
Reply secondReply = new Reply();
secondReply.setComment("Second comment");
secondReply.setRepliedOn(Calendar.getInstance().getTime());
List<Reply> replies = new ArrayList<Reply>();
replies.add(firstReply);
replies.add(secondReply);
// Create an instance of AreaAnnotation class and set options
AreaAnnotation area = new AreaAnnotation();
area.setBackgroundColor(65535);
area.setBox(new Rectangle(100, 100, 100, 100));
area.setCreatedOn(Calendar.getInstance().getTime());
area.setMessage("This is area annotation");
area.setOpacity(0.7);
area.setPageNumber(0);
area.setPenColor(65535);
area.setPenStyle(PenStyle.Dot);
area.setPenWidth((byte) 3);
area.setReplies(replies);
// Create an instance of Annotator class
Annotator annotator = new Annotator("input.bmp");
// Add annotation
annotator.add(area);
// Save to file
annotator.save("output.bmp");
annotator.dispose();
GroupDocs.Annotation Java geliştiricilerinin, birkaç kolay adımı uygulayarak herhangi bir Java tabanlı uygulamadaki VSDX dosyalarından ek açıklama ayrıntılarını kaldırmasını kolaylaştırır.
// Create an instance of Annotator class
Annotator annotator = new Annotator("C://input.bmp");
// Remove annotation by set type None
SaveOptions saveOptions = new SaveOptions();
saveOptions.setAnnotationTypes(AnnotationType.None);
// Save annotation to output file
annotator.save("C://output.bmp", saveOptions);
annotator.dispose();
GroupDocs.Annotation Java geliştiricilerinin, birkaç kolay adımı uygulayarak herhangi bir Java tabanlı uygulama içindeki VSDX dosyalarından çeşitli ek açıklama özelliklerini güncellemesini kolaylaştırır.
String outputPath = "UpdateAnnotation.bmp";
// Create an instance of Annotator class
Annotator annotator = new Annotator("input.bmp");
// Create an instance of Reply class for first example and add comments
Reply reply1 = new Reply();
reply1.setComment("Original first comment");
reply1.setRepliedOn(Calendar.getInstance().getTime());
Reply reply2 = new Reply();
reply2.setComment("Original second comment");
reply2.setRepliedOn(Calendar.getInstance().getTime());
java.util.List replies = new ArrayList();
replies.add(reply1);
replies.add(reply2);
// Create an instance of AreaAnnotation class and set options
AreaAnnotation original = new AreaAnnotation();
original.setId(1);
original.setBackgroundColor(65535);
original.setBox(new Rectangle(100, 100, 100, 100));
original.setCreatedOn(Calendar.getInstance().getTime());
original.setMessage("This is original annotation");
original.setReplies(replies);
// Add original annotation
annotator.add(original);
annotator.save(outputPath);
annotator.dispose();
LoadOptions loadOptions = new LoadOptions();
// Open annotated document
Annotator annotator1 = new Annotator(outputPath, loadOptions);
// Create an instance of Reply class for update first example
Reply reply3 = new Reply();
reply3.setComment("Updated first comment");
reply3.setRepliedOn(Calendar.getInstance().getTime());
Reply reply4 = new Reply();
reply4.setComment("Updated second comment");
reply4.setRepliedOn(Calendar.getInstance().getTime());
java.util.List replies1 = new ArrayList();
replies1.add(reply3);
replies1.add(reply4);
// Suggest we want change some properties of existed annotation
AreaAnnotation updated = new AreaAnnotation();
updated.setId(1);
updated.setBackgroundColor(255);
updated.setBox(new Rectangle(0, 0, 50, 200));
updated.setCreatedOn(Calendar.getInstance().getTime());
updated.setMessage("This is updated annotation");
updated.setReplies(replies1);
// Update and save annotation
annotator1.update(updated);
annotator1.save(outputPath);
annotator1.dispose();
GroupDocs.Annotation Java geliştiricilerinin belgelere açıklama eklemesini ve birkaç kolay adımı uygulayarak Java tabanlı herhangi bir uygulamadaki VSDX dosyalarından açıklama bilgilerini çıkarmasını kolaylaştırır.
// For using this example input file ("annotated.bmp") must be with annotations
LoadOptions loadOptions = new LoadOptions();
// Create an instance of Annotator class and get annotations
final Annotator annotator = new Annotator("annotated.bmp", loadOptions);
List annotations = annotator.get();
Hemen şimdi GroupDocs.Annotation Canlı Demolar web sitesini ziyaret ederek VSDX dosyasına ek açıklama ekleyin, kaldırın, düzenleyin ve çıkarın. Canlı demo aşağıdaki avantajlara sahiptir
API'yi indirmeye gerek yok
Herhangi bir kod yazmaya gerek yok
Sadece kaynak dosyayı yükle
Dosyayı kaydetmek için indirme bağlantısını al
.VSDX uzantılı dosyalar, Microsoft Office 2013’ten itibaren kullanıma sunulan Microsoft Visio dosya biçimini temsil eder. Microsoft Visio’nun önceki sürümleri tarafından desteklenen ikili dosya biçimi .VSD’nin yerini almak üzere geliştirilmiştir. Ayrıca Microsoft SharePoint Server 2013’teki Visio Hizmetlerinde desteklenir ve SharePoint Server’da yayınlamak için bir aracı dosya formatı gerektirmez. Visio dosyaları, görsel nesneler, akış şemaları, UML diyagramı, bilgi akışı, organizasyon şemaları, yazılım diyagramları, ağ düzeni, veritabanı modelleri, nesne eşleme ve benzeri bilgileri içeren çizimler oluşturmak için kullanılır. Visio kullanılarak oluşturulan dosyalar PNG, BMP, PDF ve diğerleri gibi farklı dosya biçimlerine de aktarılabilir.
Devamını Oku VSDX Dosya Biçimi HakkındaBazı popüler dosya biçimlerinden ek açıklama özelliklerini aşağıda belirtildiği gibi güncelleyin.
(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)