org.sejda.sambox.pdmodel.graphics.shading.GouraudShadingContext 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.shading;
import org.sejda.sambox.util.Matrix;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.geom.AffineTransform;
import java.awt.image.ColorModel;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Shades Gouraud triangles for Type4ShadingContext and Type5ShadingContext.
*
* @author Tilman Hausherr
* @author Shaola Ren
*/
abstract class GouraudShadingContext extends TriangleBasedShadingContext
{
/**
* triangle list.
*/
private List triangleList = new ArrayList<>();
/**
* Constructor creates an instance to be used for fill operations.
*
* @param shading the shading type to be used
* @param colorModel the color model to be used
* @param xform transformation for user to device space
* @param matrix the pattern matrix concatenated with that of the parent content stream
* @throws IOException if something went wrong
*/
protected GouraudShadingContext(PDShading shading, ColorModel colorModel, AffineTransform xform,
Matrix matrix) throws IOException
{
super(shading, colorModel, xform, matrix);
}
final void setTriangleList(List triangleList)
{
this.triangleList = triangleList;
}
@Override
protected Map calcPixelTable(Rectangle deviceBounds) throws IOException
{
Map map = new HashMap<>();
super.calcPixelTable(triangleList, map, deviceBounds);
return map;
}
@Override
public void dispose()
{
triangleList = null;
super.dispose();
}
@Override
protected boolean isDataEmpty()
{
return triangleList.isEmpty();
}
}