All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itextpdf.svg.renderers.path.impl.ClosePath Maven / Gradle / Ivy

Go to download

svg is a module for iText7 that allows you to integrate SVG images in your PDF creation and manipulation process

There is a newer version: 8.0.3
Show newest version
package com.itextpdf.svg.renderers.path.impl;

import com.itextpdf.kernel.pdf.canvas.PdfCanvas;
import com.itextpdf.svg.renderers.path.IPathShape;

import java.util.Map;

/***
 * Implements closePath(Z) attribute of SVG's path element
 * */
public class ClosePath extends AbstractPathShape{

    @Override
    public void draw(PdfCanvas canvas) {
        canvas.closePathStroke();
    }

    @Override
    public void setProperties(Map properties) {

    }

    @Override
    public void setCoordinates(String[] coordinates) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy