استبدال النص على الصفحة بالحالة
Contents
[
Hide
]
في بعض الأحيان، يتطلب استبدال النص في PDF أيضًا تغييرات التنسيق مثل اللون أو حجم الخط. باستخدام TextState، يمكنك تحديد خصائص التصميم وتطبيقها أثناء الاستبدال. يتيح لك ذلك تمييز النص المعدل أو فرض تنسيق متسق عبر المستندات.
- قم بإنشاء محرر محتوى PDF مثال.
- قم بربط وثيقة PDF المدخلة.
- حدد TextState بتنسيق مخصص.
- قم بتكوين استراتيجية الاستبدال.
- استبدل النص في صفحة معينة.
- احفظ مستند PDF المحدث.
import aspose.pdf as ap
import aspose.pdf.facades as pdf_facades
import sys
from os import path
sys.path.append(path.join(path.dirname(__file__), ".."))
from config import set_license, initialize_data_dir
def replace_text_on_page_with_state(infile, outfile):
# Create PdfContentEditor object
content_editor = pdf_facades.PdfContentEditor()
# Bind document to PdfContentEditor
content_editor.bind_pdf(infile)
text_state = ap.text.TextState()
text_state.foreground_color = ap.Color.red
text_state.font_size = 12
# Replace text on a specific page with explicit text formatting
content_editor.replace_text_strategy.replace_scope = (
pdf_facades.ReplaceTextStrategy.Scope.REPLACE_ALL
)
content_editor.replace_text("software", 1, "SOFTWARE PAGE 1", text_state)
# Save updated document
content_editor.save(outfile)