{overview.title}
{overview.description}
{overview.feature_1.title}
{overview.feature_1.description}
{overview.feature_2.title}
{overview.feature_2.description}
{overview.feature_3.title}
{overview.feature_3.description}
import groupdocs.merger as gm
def run():
# {code.comment_1}
with gm.Merger("sample1.pdf") as merger:
# {code.comment_2}
merger.join("sample2.pdf")
# {code.comment_3}
merger.save("merged.pdf")
pip install groupdocs-merger-net
{overview.description}
{overview.feature_1.description}
{overview.feature_2.description}
{overview.feature_3.description}
{platforms.description}
{formats.description}
{features.description}
{features.feature_1.title}
{features.feature_1.content}
{features.feature_2.title}
{features.feature_2.content}
{features.feature_3.title}
{features.feature_3.content}
{features.feature_4.title}
{features.feature_4.content}
{features.feature_5.title}
{features.feature_5.content}
{features.feature_6.title}
{features.feature_6.content}
{features.feature_7.title}
{features.feature_7.content}
{features.feature_8.title}
{features.feature_8.content}
{features.feature_9.title}
{features.feature_9.content}
{code_samples.description}
import groupdocs.merger as gm
def run():
# {code_samples.sample_1.comment_1}
with gm.Merger("sample1.docx") as merger:
# {code_samples.sample_1.comment_2}
merger.join("sample2.docx")
# {code_samples.sample_1.comment_3}
merger.save("merged.docx")
import groupdocs.merger as gm
def run():
# {code_samples.sample_2.comment_1}
filePath = "input.pdf"
filePathOut = "output.pdf"
# {code_samples.sample_2.comment_2}
splitOptions = gm.domain.options.SplitOptions(filePathOut, [ 3, 6, 8 ])
# {code_samples.sample_2.comment_3}
with gm.Merger(filePath) as merger:
# {code_samples.sample_2.comment_4}
merger.split(splitOptions)