无法使用 PDPageContentStream 绘制多个半圆 [英] Not able to draw multiple semi circles using PDPageContentStream

查看:48
本文介绍了无法使用 PDPageContentStream 绘制多个半圆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想实现使用 pdfbox 1.8.2 c# wrapper 在矩形边界上绘制云的功能.我能够使用此

I want to implement functionality to draw cloud on the boundary of a rectangle using pdfbox 1.8.2 c# wrapper.I am able to draw a single semi circle using the code mentioned in this link. But the problem is that, I am able to draw only a single semi circle. It doesn't work when I try to draw multiple adjacent semi circles. Below is the code that I am using.

(createSmallArc() is by Hans Muller, license: Creative Commons Attribution 3.0. Changes made: implemented original AS code into java. Algorithm is by Aleksas Riškus)

public void addCloud(PDRectangle rect,PDDocument doc)
            {
                PDGamma yellow = new PDGamma();
                yellow.setR(255);
                yellow.setG(255);
                yellow.setB(0);
                PDPage page = (PDPage)doc.getDocumentCatalog().getAllPages().get(pageNum);
                float width = 215;
                float height = 156;
                int noXSemiCircles = 21;
                int noYSemiCircles = 15;
                float leftX = 203;
                float bottomY = 424;
                int index = 0;
                PDPageContentStream cs = new PDPageContentStream(doc, page,true,false);
                Matrix mt = Matrix.getTranslatingInstance(leftX + (index * 10), bottomY);
                AffineTransform at = mt.createAffineTransform();
                cs.concatenate2CTM(at);
                cs.setStrokingColor(255, 0, 0);
                while (index<noXSemiCircles)
                {
                    cs.moveTo(leftX + (index * 10), bottomY);
                    DrawSlice(cs, 5, 180,270, true);
                    DrawSlice(cs, 5, 270, 360, false);
                    index++;
                }
                cs.stroke();
                cs.close();
                doc.save(System.IO.Path.Combine(FilePath));
                doc.close();
            }
             private void DrawSlice(PDPageContentStream cs, float rad, float startDeg, float endDeg,bool move)
            {
                try
                {
                    List<float> smallArc = CreateSmallArc(rad, ConvertDegreesToRadians(startDeg), ConvertDegreesToRadians(endDeg));
                    if (move)
                    {
                        cs.moveTo(smallArc[0], smallArc[1]);
                    }
                    cs.addBezier312(smallArc[2], smallArc[3], smallArc[4], smallArc[5], smallArc[6], smallArc[7]);
                }
                catch (Exception ex)
                {

                }
            }

解决方案

the concatenate2CTM() method is relative to the current position and not absolute. And move your stroke() call inside or it won't be displayed in Adobe Reader (PDFBox does display it). Thus change your code like this:

    while (index < noXSemiCircles)
    {
        cs.saveGraphicsState();
        Matrix mt = Matrix.getTranslatingInstance(leftX + (index * 10), bottomY);
        AffineTransform at = mt.createAffineTransform();
        cs.concatenate2CTM(at);
        DrawSlice(cs, 5, 180, 270, true);
        DrawSlice(cs, 5, 270, 360, true);
        cs.stroke();
        cs.restoreGraphicsState();
        index++;
    }

And this is what I get:

这篇关于无法使用 PDPageContentStream 绘制多个半圆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆