org.sejda.sambox.pdmodel.graphics.pattern.PDShadingPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sambox Show documentation
Show all versions of sambox Show documentation
An Apache PDFBox fork intended to be used as PDF processor for Sejda and PDFsam
related projects
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sejda.sambox.pdmodel.graphics.pattern;
import java.io.IOException;
import org.sejda.sambox.cos.COSBase;
import org.sejda.sambox.cos.COSDictionary;
import org.sejda.sambox.cos.COSName;
import org.sejda.sambox.pdmodel.graphics.shading.PDShading;
import org.sejda.sambox.pdmodel.graphics.state.PDExtendedGraphicsState;
/**
* A shading pattern dictionary.
*
*/
public class PDShadingPattern extends PDAbstractPattern
{
private PDExtendedGraphicsState extendedGraphicsState;
private PDShading shading;
/**
* Creates a new shading pattern.
*/
public PDShadingPattern()
{
super();
getCOSObject().setInt(COSName.PATTERN_TYPE, PDAbstractPattern.TYPE_SHADING_PATTERN);
}
/**
* Creates a new shading pattern from the given COS dictionary.
* @param resourceDictionary The COSDictionary for this pattern resource.
*/
public PDShadingPattern(COSDictionary resourceDictionary)
{
super(resourceDictionary);
}
@Override
public int getPatternType()
{
return PDAbstractPattern.TYPE_SHADING_PATTERN;
}
/**
* This will get the external graphics state for this pattern.
* @return The extended graphics state for this pattern.
*/
public PDExtendedGraphicsState getExtendedGraphicsState()
{
if (extendedGraphicsState == null)
{
COSBase base = getCOSObject().getDictionaryObject(COSName.EXT_G_STATE);
if(base instanceof COSDictionary)
{
extendedGraphicsState = new PDExtendedGraphicsState((COSDictionary) base);
}
}
return extendedGraphicsState;
}
/**
* This will set the external graphics state for this pattern.
* @param extendedGraphicsState The new extended graphics state for this pattern.
*/
public void setExtendedGraphicsState(PDExtendedGraphicsState extendedGraphicsState)
{
this.extendedGraphicsState = extendedGraphicsState;
getCOSObject().setItem(COSName.EXT_G_STATE, extendedGraphicsState);
}
/**
* This will get the shading resources for this pattern.
* @return The shading resources for this pattern.
* @throws IOException if something went wrong
*/
public PDShading getShading() throws IOException
{
if (shading == null)
{
COSBase base = getCOSObject().getDictionaryObject(COSName.SHADING);
if(base instanceof COSDictionary)
{
shading = PDShading.create((COSDictionary) base);
}
}
return shading;
}
/**
* This will set the shading resources for this pattern.
* @param shadingResources The new shading resources for this pattern.
*/
public void setShading( PDShading shadingResources )
{
shading = shadingResources;
getCOSObject().setItem(COSName.SHADING, shadingResources);
}
}