org.jpedal.render.utils.ShapeUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenViewerFX Show documentation
Show all versions of OpenViewerFX Show documentation
Open Source (LGPL) JavaFX PDF Viewer for NetBeans plugin
The newest version!
/*
* ===========================================
* Java Pdf Extraction Decoding Access Library
* ===========================================
*
* Project Info: http://www.idrsolutions.com
* Help section for developers at http://www.idrsolutions.com/support/
*
* (C) Copyright 1997-2017 IDRsolutions and Contributors.
*
* This file is part of JPedal/JPDF2HTML5
*
@LICENSE@
*
* ---------------
* ShapeUtils.java
* ---------------
*/
package org.jpedal.render.utils;
import java.awt.Shape;
import java.awt.geom.PathIterator;
/**
* static helper methods for Clip code
*/
public class ShapeUtils {
public static boolean isSimpleOutline(final Shape path) {
int count = 0;
final PathIterator i = path.getPathIterator(null);
final float[] values = new float[6];
while (!i.isDone() && count < 6) { //see if rectangle or complex clip
//Get value before next called otherwise issues with pathIterator ending breaks everything
final int value = i.currentSegment(values);
i.next();
count++;
//If there is a curve, class as complex outline
if (value == PathIterator.SEG_CUBICTO || value == PathIterator.SEG_QUADTO) {
count = 6;
}
}
return count < 6;
}
}