ลงลายเซ็นไฟล์แบบอิเล็กทรอนิกส์และจัดการลายเซ็นข้อความ, รูปภาพ, QR-code, แสตมป์, ดิจิทัลและบาร์โค้ดในแอปพลิเคชัน Node.js ด้วยการใช้ e-signing REST API อย่างง่าย
เริ่มทดลองใช้งานฟรีGroupDocs.Signature Cloud SDK for Node.js is a REST oriented API for easy integration into existing Node.js based eSign and digital signature programs. This signature SDK helps you speed up the development by taking care of low-level details, such as request and response handling. Moreover, it provides you with a handy collection of features to apply various types of signatures, such as, image signatures, barcode signatures, QR-Code signatures, text-based signatures, digital and stamp signatures. This customizable Node.js based signature SDK allows you to work with signatures in spreadsheets, presentations, images, portable and simple files of supported formats.
หากคุณกำลังมองหาโค้ดต้นฉบับสำหรับการแยกวิเคราะห์ไฟล์ในคลาวด์ ให้ตรวจสอบ Cloud SDKs ของเราสำหรับ Node.js ที่ GitHub
คุณสามารถ ลอง GroupDocs.Signature Low-Code Node.js APIs ได้โดยไม่มีข้อจำกัดใด ๆ.
GroupDocs.Signature Cloud ยังมีให้ใช้เป็น Docker ภาพ ซึ่งสามารถใช้เพื่อ self-host บริการได้. หรือคุณอาจสร้างบริการของคุณเองโดยใช้ GroupDocs.Signature High-code APIs ซึ่งในปัจจุบันขับเคลื่อนทั้งแอปฟรีของเราและ REST APIs
GroupDocs.Signature Cloud SDK สำหรับ Node.js ทำให้การทำงานกับ eSignature ง่ายมาก นอกจากการประยุกต์ใช้ลายเซ็นดิจิทัลแล้ว คุณยังสามารถจัดการคุณสมบัติของเอกสารได้ ตัวอย่างต่อไปนี้อธิบายวิธีดึงข้อมูลเอกสารของไฟล์ DOCX โดยใช้ Node.js:
// load the module
var GroupDocs = require('groupdocs-signature-cloud');
// get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required).
var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
// construct SignatureApi
var config = new GroupDocs.Configuration(appSid, appKey);
config.apiBaseUrl = "https://api.groupdocs.cloud";
var infoApi = GroupDocs.InfoApi.fromConfig(config);
// retrieve supported file-formats
infoApi.getSupportedFileFormats()
.then(function (response) {
console.log("Supported file-formats:")
response.formats.forEach(function (format) {
console.log(format.fileFormat + " (" + format.extension + ")");
});
})
.catch(function (error) {
console.log("Error: " + error.message)
});
โดยใช้ GroupDocs.Signature Cloud SDK สำหรับ Node.js คุณสามารถตั้งค่าผลกระทบแปรงพื้นหลังสำหรับข้อความของคุณรวมถึงการประทับลายเซ็นได้ ปัจจุบัน SDK รองรับการใช้แปรง 4 ประเภทที่แตกต่างกัน ได้แก่ Radial Gradient Brush, Linear Gradient Brush, Textured Brush และ Solid Brush.