java - 如何使用pdfbox绘制饼图?

标签 java pdfbox bezier

我必须使用 pdfbox 绘制饼图。

设数据为:

科目分数(百分比) 学位分数 累积学位
子 1 80 80 80
次级 2 70 70 150
子 3 65 65 215
子 4 90 90 305
子 5 55 55 360

令半径和中心分别为 100 像素和 ( 250, 400)。

让我们取平行于 x 轴的初始线。
绘制初始行语句将是:
contentStream.drawLine(250, 400, 350, 400);

我坚持:
a) 找到距离初始线一定角度的圆上点的 x, y 坐标来绘制半径
b) 使用贝塞尔曲线在两点之间绘制圆弧。

任何有关解决问题的帮助将不胜感激!

最佳答案

根据角度求圆上的 x、y 坐标是学校数学,即 sin() 和 cos(),棘手的部分是用贝塞尔曲线绘制圆弧。

这是一些绘制您要求的饼图的代码。请注意,createSmallArc() 只能处理最大 90° 的角度。如果您想要更多,则必须通过绘制几条弧直到返回到 (0,0) 来修改代码,或者只绘制几片。

(createSmallArc() 来自 Hans Muller ,许可证: Creative Commons Attribution 3.0 。所做的更改:将原始 AS 代码实现为 java。算法来自 Aleksas Riškus )

public class PieChart
{
    public static void main(String[] args) throws IOException
    {
        PDDocument doc = new PDDocument();
        PDPage page = new PDPage();
        doc.addPage(page);
        PDPageContentStream cs = new PDPageContentStream(doc, page);
        
        cs.transform(Matrix.getTranslateInstance(250, 400));
        
        cs.setNonStrokingColor(Color.yellow);
        drawSlice(cs, 100, 0, 80);
        cs.fill();
        cs.setNonStrokingColor(Color.red);
        drawSlice(cs, 100, 80, 150);
        cs.fill();
        cs.setNonStrokingColor(Color.green);
        drawSlice(cs, 100, 150, 215);
        cs.fill();
        cs.setNonStrokingColor(Color.blue);
        drawSlice(cs, 100, 215, 305);
        cs.fill();
        cs.setNonStrokingColor(Color.ORANGE);
        drawSlice(cs, 100, 305, 360);
        cs.fill();
        
        cs.close();
        doc.save("piechart.pdf");
        doc.close();
    }

    private static void drawSlice(PDPageContentStream cs, float rad, float startDeg, float endDeg) throws IOException
    {
        cs.moveTo(0, 0);
        List<Float> smallArc = createSmallArc(rad, Math.toRadians(startDeg), Math.toRadians(endDeg));
        cs.lineTo(smallArc.get(0), smallArc.get(1));
        cs.curveTo(smallArc.get(2), smallArc.get(3), smallArc.get(4), smallArc.get(5), smallArc.get(6), smallArc.get(7));
        cs.closePath();
    }
    
    /**
     *  From https://hansmuller-flex.blogspot.com/2011/10/more-about-approximating-circular-arcs.html
     * 
     *  Cubic bezier approximation of a circular arc centered at the origin, 
     *  from (radians) a1 to a2, where a2-a1 &lt; pi/2.  The arc's radius is r.
     * 
     *  Returns a list with 4 points, where x1,y1 and x4,y4 are the arc's end points
     *  and x2,y2 and x3,y3 are the cubic bezier's control points.
     * 
     *  This algorithm is based on the approach described in:
     *  Aleksas Riškus, "Approximation of a Cubic Bezier Curve by Circular Arcs and Vice Versa," 
     *  Information Technology and Control, 35(4), 2006 pp. 371-378.
     */
    private static List<Float> createSmallArc(double r, double a1, double a2)
    {
        // Compute all four points for an arc that subtends the same total angle
        // but is centered on the X-axis
        double a = (a2 - a1) / 2;
        double x4 = r * Math.cos(a);
        double y4 = r * Math.sin(a);
        double x1 = x4;
        double y1 = -y4;
        double q1 = x1*x1 + y1*y1;
        
        double q2 = q1 + x1*x4 + y1*y4;
        double k2 = 4/3d * (Math.sqrt(2 * q1 * q2) - q2) / (x1 * y4 - y1 * x4);
        double x2 = x1 - k2 * y1;
        double y2 = y1 + k2 * x1;
        double x3 = x2; 
        double y3 = -y2;
        
        // Find the arc points' actual locations by computing x1,y1 and x4,y4 
        // and rotating the control points by a + a1
        
        double ar = a + a1;
        double cos_ar = Math.cos(ar);
        double sin_ar = Math.sin(ar);
        
        List<Float> list = new ArrayList<Float>();
        list.add((float) (r * Math.cos(a1)));
        list.add((float) (r * Math.sin(a1))); 
        list.add((float) (x2 * cos_ar - y2 * sin_ar)); 
        list.add((float) (x2 * sin_ar + y2 * cos_ar)); 
        list.add((float) (x3 * cos_ar - y3 * sin_ar)); 
        list.add((float) (x3 * sin_ar + y3 * cos_ar)); 
        list.add((float) (r * Math.cos(a2))); 
        list.add((float) (r * Math.sin(a2)));
        return list;
    }
}

如果切片之间出现白线并且不希望出现这种情况,请参阅 this answer .

关于java - 如何使用pdfbox绘制饼图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40781610/

相关文章:

java - 无法阅读跨行突出显示的确切文本

javascript - 如何在没有 ctx.bezierCurveTo 的情况下使用 native Javascript 代码绘制平滑曲线?

postscript - 如何为 postscripts curveto 运算符生成控制点?

java - 如何使用 javafx packager 签署 MSI?

java - 如何在java中将输入的字符串传递给谷歌搜索

java - Rhino 中通过 HttpClient 的 XMLHttpRequest

pdf - 生成的pdf中的文本是反向的

java - Glide 4.1.1 无法解析GlideApp

java - PDFBox 中的缩放图像模糊

java - 如何使用 openGL 和贝塞尔曲线创建拼图 block ?