Hi Aspose Team,
In our project, we need to do the following conversion steps:
DOCX → PDF
orPPTX → PDF
- Then,
PDF → PPTX
usingcom.aspose.pdf.Document#save(java.io.OutputStream, int)
We see that generated PDF
stores shapes as vector paths on separate layers.
However, during the PDF → PPTX
conversion, each shape is rasterized and inserted as a cropped image based on its bounding box.
This means you can’t edit the shape’s fill, stroke, or other properties in the final PPTX
.
Is there any way to preserve the original shape details after conversion from PDF
?
If not, would it be possible to improve this at your end by either:
- Retaining the original shape types during conversion to
PPTX
? - Or at least converting vector paths in the
PDF
to editable freeform shapes inPPTX
instead of raster images?
Example: