Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
تعمل مقتطفات الشيفرة التالية أيضًا مع مكتبة Aspose.PDF.Drawing.
تسمح طريقة استبدال لمجموعة الصور باستبدال صورة في ملف PDF موجود.
يمكن العثور على مجموعة الصور في مجموعة الموارد الخاصة بالصفحة. لاستبدال صورة:
توضح لك مقتطفات الشيفرة التالية كيفية استبدال صورة في ملف PDF.
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ReplaceImageInPDF()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Images();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "ReplaceImage.pdf"))
{
// Replace a particular image in the document
using (var imageStream = new FileStream(dataDir + "NewImage.jpg", FileMode.Open))
{
document.Pages[1].Resources.Images.Replace(1, imageStream);
}
// Save PDF document
document.Save(dataDir + "ReplaceImage_out.pdf");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.