GroupDocs.वॉटरमार्क क्लाउड उत्पाद परिवार

क्लाउड डेवलपर्स के लिए अच्छी खबर! ग्रुपडॉक्स ने वॉटरमार्क क्लाउड एपीआई लॉन्च किया है। यह GroupDocs वॉटरमार्क समाधान को बढ़ाता है। यह .NET और जावा डेवलपर्स के लिए ऑन-प्रिमाइसेस एपीआई और किसी भी प्रकार के उपयोगकर्ता के लिए क्रॉस-प्लेटफ़ॉर्म ऑनलाइन ऐप्स के रूप में पहले से ही मौजूद है। एसडीके के साथ वॉटरमार्क क्लाउड एपीआई डेवलपर्स को वॉटरमार्क के साथ महत्वपूर्ण दस्तावेजों को सुरक्षित करने की अनुमति देता है, जिन्हें तीसरे पक्ष के टूल द्वारा स्वचालित रूप से हटाया जाना मुश्किल होता है।

GroupDocs.Watermark Cloud REST API है जो दस्तावेज़ों को सुरक्षित करने और वॉटरमार्क प्रबंधित करने के लिए सभी मुख्य सुविधाएँ प्रदान करता है। कुछ महत्वपूर्ण विशेषताओं में शामिल हैं; छवि या टेक्स्ट वॉटरमार्क जोड़ें, पहले से जोड़े गए वॉटरमार्क हटाएं, सभी समर्थित प्रारूपों में वॉटरमार्क बदलें या खोजें।

समर्थित दस्तावेज़ प्रकार

यहां वर्तमान में समर्थित दस्तावेज़ प्रारूप हैं। आप किसी भी समर्थित दस्तावेज़ प्रारूप के लिए उपलब्ध विशिष्ट सुविधा के बारे में पूरी जानकारी पाने के लिए किसी भी समय GroupDocs.Watermark Cloud के लिए दस्तावेज़ीकरण पर जा सकते हैं।

एसडीके और नमूने

वॉटरमार्क REST API के साथ, GroupDocs ओपन-सोर्स SDK भी प्रदान करता है जिसे आवश्यकताओं के अनुसार स्व-अनुकूलित भी किया जा सकता है। अनुरोध करने और प्रतिक्रियाओं को संभालने के निम्न-स्तरीय विवरण के बारे में चिंता किए बिना, डेवलपर्स विकास को गति देने के लिए प्रासंगिक एसडीके का उपयोग कर सकते हैं। वर्तमान में, हमने नमूनों के साथ नीचे उल्लिखित एसडीके लॉन्च किए हैं। ये SDK और उदाहरण भी GitHub पर उपलब्ध हैं:

बेहतर विचार प्राप्त करने के लिए यहां कुछ उदाहरण दिए गए हैं। अधिक उदाहरणों के लिए, या तो आप [दस्तावेज़ीकरण][10] पृष्ठों पर जा सकते हैं या प्रासंगिक [गिटहब रिपोजिटरी][11] पर जा सकते हैं।

जावा में वर्ड डॉक्यूमेंट में इमेज वॉटरमार्क जोड़ें

यहां आप [GroupDocs.Watermark Cloud SDK for Java][12] का उपयोग करके किसी Word दस्तावेज़ में वॉटरमार्क जोड़ने के लिए जावा कोड का उदाहरण देख सकते हैं।

// संपूर्ण उदाहरणों और डेटा फ़ाइलों के लिए, कृपया https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-java-samples पर जाएँ।
String MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
String MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
   
Configuration configuration = new Configuration(MyAppSid, MyAppKey);
WatermarkApi apiInstance = new WatermarkApi(configuration);
 
WatermarkOptions options = new WatermarkOptions();
FileInfo fileInfo = new FileInfo();
fileInfo.setFilePath("documents/sample.docx");
options.setFileInfo(fileInfo);
 
WatermarkDetails watermarkDetails = new WatermarkDetails();
 
ImageWatermarkOptions imageWatermarkOptions = new ImageWatermarkOptions();
FileInfo image = new FileInfo();
image.setFilePath("watermark_images/sample_watermark.png");
imageWatermarkOptions.setImage(image);
watermarkDetails.setImageWatermarkOptions(imageWatermarkOptions);
 
List<WatermarkDetails> watermarkDetailsList = new ArrayList<WatermarkDetails>();
watermarkDetailsList.add(watermarkDetails);
options.setWatermarkDetails(watermarkDetailsList);
 
AddRequest request = new AddRequest(options);
WatermarkResult response = apiInstance.add(request);

C# में PDF दस्तावेज़ से वॉटरमार्क हटाएँ

नीचे कोड स्निपेट है जो दिखाता है कि कैसे आप [GroupDocs.Watermark Cloud SDK for .NET][13] का उपयोग करके CSharp में एक पीडीएफ दस्तावेज़ से किसी भी वॉटरमार्क को तुरंत हटा सकते हैं।

// For complete examples and data files, please go to https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-dotnet-samples
string MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
string MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
   
var configuration = new Configuration(MyAppSid, MyAppKey);
var apiInstance = new InfoApi(configuration);
var fileInfo = new FileInfo
{
    FilePath = "with_watermarks/sample.pdf",
};
var options = new RemoveOptions
{
    FileInfo = fileInfo,
    ImageSearchCriteria = new ImageSearchCriteria
    {
        ImageFileInfo = new FileInfo { FilePath = "watermark_images/sample_watermark.png" }
    },
    TextSearchCriteria = new TextSearchCriteria
    {
        SearchText = "Watermark text"
    },
    OutputFolder = "removed_watermarks"
};
var request = new RemoveRequest(options);
var response = apiInstance.Remove(request);

जावा का उपयोग करके पीडीएफ दस्तावेज़ में वॉटरमार्क बदलें

यह दिखाने के लिए जावा उदाहरण दिया गया है कि आप पहचाने गए वॉटरमार्क गुणों को कैसे बदल सकते हैं। वॉटरमार्क छवि, टेक्स्ट या टेक्स्ट उपस्थिति विकल्प जैसे उसके फ़ॉन्ट, आकार, रंग आदि को आसानी से बदला जा सकता है।

// संपूर्ण उदाहरणों और डेटा फ़ाइलों के लिए, कृपया https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-java-samples पर जाएँ।
String MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
String MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
     
Configuration configuration = new Configuration(MyAppSid, MyAppKey);
WatermarkApi apiInstance = new WatermarkApi(configuration);
 
FileInfo fileInfo = new FileInfo();
fileInfo.setFilePath("with_watermarks/sample.pdf");
ReplaceOptions options = new ReplaceOptions();
options.setFileInfo(fileInfo);
 
ImageSearchCriteria imageSearchCriteria = new ImageSearchCriteria();
FileInfo imageFileInfo = new FileInfo();
imageFileInfo.setFilePath("watermark_images/sample_watermark.png");
imageSearchCriteria.setImageFileInfo(imageFileInfo);
options.setImageSearchCriteria(imageSearchCriteria);
 
TextSearchCriteria textSearchCriteria = new TextSearchCriteria();
textSearchCriteria.setSearchText("Watermark text");
options.setTextSearchCriteria(textSearchCriteria);
 
ReplaceTextOptions replaceTextOptions = new ReplaceTextOptions();
replaceTextOptions.setText("New watermark text");
options.setReplaceTextOptions(replaceTextOptions);
 
ReplaceImageOptions replaceImageOptions = new ReplaceImageOptions();
FileInfo replaceImageFileInfo = new FileInfo();
replaceImageFileInfo.setFilePath("images/sample.jpg");
replaceImageOptions.setImage(replaceImageFileInfo);
options.setReplaceImageOptions(replaceImageOptions);
 
options.setOutputFolder("found_image_watermarks");
 
ReplaceRequest request = new ReplaceRequest(options);
ReplaceResult response = apiInstance.replace(request);

C# का उपयोग करके दस्तावेज़ों में वॉटरमार्क खोजें

REST API लक्ष्य दस्तावेज़ में संभावित छवि और टेक्स्ट वॉटरमार्क खोजने के लिए खोज मानदंडों का एक समृद्ध सेट प्रदान करता है।

// For complete examples and data files, please go to https://github.com/groupdocs-parser-cloud/groupdocs-parser-cloud-dotnet-samples
string MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
string MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
   
var configuration = new Configuration(MyAppSid, MyAppKey);
var apiInstance = new InfoApi(configuration);
var fileInfo = new FileInfo
{
    FilePath = "with_watermarks/sample.pdf"
};
var options = new SearchOptions
{
    FileInfo = fileInfo,
    ImageSearchCriteria = new ImageSearchCriteria
    {
        ImageFileInfo = new FileInfo { FilePath = "watermark_images/sample_watermark.png" }
    },
    TextSearchCriteria = new TextSearchCriteria
    {
        SearchText = "Watermark text"
    },
    SaveFoundImages = true,
    OutputFolder = "found_image_watermarks"
};
var request = new SearchRequest(options);
var response = apiInstance.Search(request);

संसाधन

यहां प्रासंगिक संसाधनों के कुछ महत्वपूर्ण लिंक दिए गए हैं। फिर भी, यदि आपको कोई कठिनाई या भ्रम महसूस हो, तो आप बेझिझक हमसे [फोरम][14] पर संपर्क कर सकते हैं।

[वॉटरमार्क][15] के लिए आपको यहां देखकर अच्छा लगा।

[5]: https://wiki.fileformat.com/image/jpeg/" target="_blank" rel=“noreferrer noopener” aria-label=" (opens in a new tab [6]: https://wiki.fileformat.com/view/pdf/" target="_blank" rel=“noreferrer noopener” aria-label=“PDF (opens in a new tab [7]: https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-dotnet-samples" target="_blank” rel=“noreferrer noopener” aria-label=".NET Examples (opens in a new tab [8]: https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-java" target="_blank" rel=“noreferrer noopener” aria-label=“Java SDK (opens in a new tab [9]: https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-java-samples" target="_blank” rel=“noreferrer noopener” aria-label=“Java Examples (opens in a new tab [10]: https://docs.groupdocs.cloud/watermark [11]: https://github.com/groupdocs-watermark-cloud [12]: https://products.groupdocs.cloud/watermark/java [13]: https://products.groupdocs.cloud/watermark/net [14]: https://forum.groupdocs.cloud/c/watermark [15]: https://en.wikipedia.org/wiki/Watermark