هل تحتاج إلى تحويل صورة إلى PDF برمجيًا؟ باستخدام Aspose.Words for Node.js via .NET يمكنك تحويل الصورة إلى تنسيق PDF باستخدام بضعة أسطر من كود JavaScript.
Node.js via .NET ملفات PDF من الصور بجودة احترافية. اختبر أعلى جودة للصورة لتحويل PDF مباشرة في متصفحك. تسمح واجهة برمجة تطبيقات التحويل القوية Node.js via .NET بتحويل الصور إلى العديد من التنسيقات الشائعة.
يوضح المثال التالي كيفية تحويل صورة إلى PDF في JavaScript.
اتبع الخطوات السهلة لتحويل ملف صورة إلى تنسيق PDF. اقرأ ملف صورتك من محرك الأقراص المحلي، ثم احفظه ببساطة بتنسيق Portable Document Format، مع تحديد تنسيق الملف المطلوب بامتداد PDF. لكل من قراءة الصور وكتابة ملفات PDF، يمكنك استخدام أسماء ملفات مؤهلة بالكامل.
npm install @aspose/words
ينسخ
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
doc.save("Output.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.png")
for (var page = 0; page < doc.pageCount; page++) {
var extractedPage = doc.extractPages(page, 1);
extractedPage.save(`Output_${page + 1}.pdf`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.png")
doc.save("Output.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.png")
shape.getShapeRenderer().save("Output.pdf", new aw.Saving.ImageSaveOptions(aw.SaveFormat.pdf))
We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.
This package is compatible with Node.js 14.17.0 or higher.
يمكنك تحويل صورة إلى العديد من تنسيقات الملفات الأخرى: