Hello,
I’m using the self hosted groupdocs merger cloud, to join file_1.pptx and file_2.pptx.
The call to /v1.0/merger/join works fine when I don’t include pages:
body:
{
“JoinItems”:
[
{
“FileInfo”:
{
“FilePath”: “file_1.pptx”
}
},
{
“FileInfo”:
{
“FilePath”: “file_2.pptx”
}
}
],
“OutputPath”: “merge_result_all_pages.pptx”
}
But when I add pages, the quality is really low.
body:
{
“JoinItems”:
[
{
“FileInfo”:
{
“FilePath”: “file_1.pptx”
},
“Pages”: [1,2,3]
},
{
“FileInfo”:
{
“FilePath”: “file_2.pptx”
},
“Pages”: [1,2,3]
}
],
“OutputPath”: “merge_result_selected_pages.pptx”
}
Can you fix the quality?
files.zip (4.8 MB)