Java üzerinden Python'da Düşük Kodlu Sunum İşlemleri
Genel Bakış
The Aspose.Slides for Python via Java API provides static helper classes for common presentation operations. These helpers wrap frequently used object-model workflows in focused methods, so you can convert or merge files, process presentation elements, collect shapes, and remove unused content with less code.
Low-code helpers are most useful when the operation applies to an entire file or presentation and the default workflow matches your requirements. Use the full Aspose.Slides object model when you need fine-grained control over individual slides, masters, layouts, shapes, export settings, or relationships between presentation elements.
The following table summarizes the available helpers:
| Yardımcı | Ne için kullanılır |
|---|---|
| Convert | Bir sunumu başka bir formata, doğrudan dosya‑dosya çağrısı ile dönüştürme. |
| Merger | Aynı formatta tam sunum dosyalarını birleştirme. |
| ForEach | Her slayt, şekil, paragraf veya metin bölümü için bir eylem çalıştırma. |
| Collect | Tekrarlı işleme veya analiz için tüm sunumdan şekilleri alma. |
| Compress | Kullanılmayan master ve düzenleri kaldırma ve gömülü font verilerini azaltma. |
Bir Sunumu Dönüştürme
Use Convert.autoByExtension when the output file extension is sufficient to select the export format. The method opens the source presentation, determines the required format from the output path, and writes the result.
import jpype
import asposeslides
if not jpype.isJVMStarted():
jpype.startJVM()
from asposeslides.api import Convert
Convert.autoByExtension("input.pptx", "output.pdf")
The Convert class also provides dedicated methods for PDF, SVG, JPEG, PNG, and TIFF output. Use the full object model when you need to inspect or modify the presentation before export or configure an export option that is not exposed by the selected helper. See Convert Presentation for format-specific workflows and options.
Sunumları Birleştirme
Use Merger.process to combine complete presentation files with one call. The input presentations must have the same file format.
import jpype
import asposeslides
if not jpype.isJVMStarted():
jpype.startJVM()
from asposeslides.api import Merger
input_files = jpype.JArray(jpype.JString)(["part-1.pptx", "part-2.pptx"])
Merger.process(input_files, "merged.pptx")
The helper is appropriate when all slides should be appended to one result without selecting or remapping them individually. Use the full object model when you need to merge selected slides, apply a destination master or layout, preserve sections explicitly, or reconcile different slide sizes. See Merge Presentations for those scenarios.
Sunum Öğeleri Üzerinde Döngü
The ForEach class invokes a callback for each requested type of presentation element. It avoids nested collection loops and is convenient for presentation-wide inspection or formatting changes.
The following example uses ForEach.slide, ForEach.shape, ForEach.paragraph, and ForEach.portion to inspect the corresponding elements:
import jpype
import asposeslides
if not jpype.isJVMStarted():
jpype.startJVM()
from asposeslides.api import ForEach, Presentation
def print_slide(slide, index):
print(f"Slide {index}: {slide.getShapes().size()} shapes")
def print_shape(shape, slide, index):
print(f"Shape {index} on {slide.getClass().getSimpleName()}: {shape.getName()}")
def print_paragraph(paragraph, slide, index):
print(f"Paragraph {index} on {slide.getClass().getSimpleName()}: {paragraph.getText()}")
def print_portion(portion, paragraph, slide, index):
print(f"Portion {index} on {slide.getClass().getSimpleName()}: {portion.getText()}")
presentation = Presentation("input.pptx")
try:
ForEach.slide(presentation, print_slide)
ForEach.shape(presentation, print_shape)
ForEach.paragraph(presentation, print_paragraph)
ForEach.portion(presentation, print_portion)
finally:
presentation.dispose()
By default, presentation-wide shape and text traversal includes normal, master, and layout slides. Overloads with an includeNotes parameter can also process notes slides. Use direct collection loops when traversal order, early exit, filtering before callback invocation, or detailed parent-child control is important.
Şekilleri Toplama
Use Collect.shapes when you need a collection of all shapes in a presentation rather than a callback for each shape. This is useful when the same set will be filtered, counted, or processed more than once.
import jpype
import asposeslides
if not jpype.isJVMStarted():
jpype.startJVM()
from asposeslides.api import Collect, Presentation
presentation = Presentation("input.pptx")
try:
shapes = Collect.shapes(presentation)
for shape in shapes:
print(f"{shape.getName()}: {shape.getClass().getSimpleName()}")
finally:
presentation.dispose()
Use ForEach.shape instead when each shape can be handled immediately and you do not need to retain the collected result.
Sunum İçeriğini Sıkıştırma
The Compress class can remove unused structural elements and reduce embedded font data:
- removeUnusedLayoutSlides normal bir slaytın referans vermediği düzen slaytlarını kaldırır.
- removeUnusedMasterSlides artık kullanılmayan master slaytları kaldırır.
- compressEmbeddedFonts gömülü fontlardan kullanılmayan karakterleri kaldırır.
import jpype
import asposeslides
if not jpype.isJVMStarted():
jpype.startJVM()
from asposeslides.api import Compress, Presentation, SaveFormat
presentation = Presentation("input.pptx")
try:
Compress.removeUnusedLayoutSlides(presentation)
Compress.removeUnusedMasterSlides(presentation)
Compress.compressEmbeddedFonts(presentation)
presentation.save("compressed.pptx", SaveFormat.Pptx)
finally:
presentation.dispose()
Remove unused layouts before unused masters so a master that becomes unreferenced after layout cleanup can also be removed. Save the optimized presentation to a new file if you may need the original masters, layouts, or complete embedded font data later. For more detail, see Slide Master and Embedded Font.
SSS
Düşük kodlu API’yi tam nesne modeline ne zaman kullanmalıyım?
Use low-code helpers when a standard operation applies to a complete file or presentation and does not require detailed control over individual elements. Use the full object model when you need to select specific slides, control master and layout relationships, inspect intermediate state, or configure behavior that the helper does not expose.
Merger farklı dosya formatlarındaki sunumları birleştirebilir mi?
Hayır. Merger.process aynı formatta giriş sunumları gerektirir. Önce giriş dosyalarını ortak bir formata dönüştürün, örneğin Convert.autoByExtension ile, ardından dönüştürülmüş dosyaları birleştirin.
ForEach master, layout ve not slaytlarını işler mi?
ForEach.slide normal sunum slaytları üzerinde iterasyon yapar. Sunum genelinde ForEach.shape, ForEach.paragraph ve ForEach.portion işlemleri varsayılan olarak normal, master ve layout slaytlarını içerir. Not slaytlarını dahil etmek için includeNotes parametresi True olarak ayarlanmış overload’ları kullanın.
ForEach.shape ile Collect.shapes arasındaki fark nedir?
ForEach.shape her şekli bir geri çağırma ile hemen işlemek için kullanılır. Collect.shapes ise şekilleri bir iterable sonuç olarak toplamak, filtrelemek, saymak veya birden çok kez gezmek istediğinizde kullanılır.
Compress her zaman sunum dosyasını küçültür mü?
Zorunlu değil. Sonuç, sunumun kullanılmayan düzenler, kullanılmayan masterlar veya kullanılmayan karakterlere sahip gömülü fontlar içerip içermediğine bağlıdır. Eğer bunlar yoksa ilgili Compress işlemleri dosya boyutunu azaltmayabilir.
ForEach veya Compress tarafından yapılan değişiklikler otomatik olarak kaydedilir mi?
Hayır. Bu yardımcılar, bellekteki Presentation nesnesi üzerinde çalışır. Bir ForEach geri çağırma içinde öğeleri değiştirdikten veya Compress çalıştırdıktan sonra sonucu yazmak için Presentation.save metodunu çağırın.