org.sejda.impl.sambox.component.split.PagesPdfSplitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sejda-sambox Show documentation
Show all versions of sejda-sambox Show documentation
Package containing tasks implemented using sambox.
/*
* Created on 06/mar/2015
* Copyright 2013-2014 by Andrea Vacondio ([email protected]).
*
* This file is part of the Sejda source code
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.sejda.impl.sambox.component.split;
import org.sejda.core.support.prefix.model.NameGenerationRequest;
import org.sejda.model.parameter.AbstractSplitByPageParameters;
import org.sejda.model.split.NextOutputStrategy;
import org.sejda.model.split.SplitPages;
import org.sejda.sambox.pdmodel.PDDocument;
/**
* Component providing split by pages functionalities.
*
* @author Andrea Vacondio
* @param
* the type of parameters the splitter needs to have all the information necessary to perform the split.
*/
public class PagesPdfSplitter extends AbstractPdfSplitter {
private NextOutputStrategy splitPages;
public PagesPdfSplitter(PDDocument document, T parameters, boolean optimize) {
super(document, parameters, optimize, parameters.discardOutline());
this.splitPages = new SplitPages(parameters.getPages(document.getNumberOfPages()));
}
@Override
public NextOutputStrategy nextOutputStrategy() {
return splitPages;
}
@Override
public NameGenerationRequest enrichNameGenerationRequest(NameGenerationRequest request) {
return request;
}
}