PDF Atelier Logo

PDF Atelier

Circle

Draw circular and elliptical shapes with customizable color, stroke, and fill.

Circle Tool

Draw circular/elliptical shapes with:

  • Aspect Ratio Control: Free-form or locked circle
  • Customizable Properties: Color, stroke, fill
  • Precise Positioning: Click and drag to define

Prop

Type

Implementation

import { PDFAtelier } from '@innosoft/pdf-atelier-react';

export default function CircleExample() {
  return (
    <PDFAtelier
      src="/document.pdf"
      license="My License"
      showCircle={true}
      showColorPicker={true}
      showSelect={true}
      showDelete={true}
    />
  );
}
import { Component } from '@angular/core';
import { PdfAtelierWrapper } from '@innosoft/pdf-atelier-angular';

@Component({
  standalone: true,
  selector: 'app-circle',
  imports: [PdfAtelierWrapper],
  template: `
    <pdf-atelier-wrapper
      [src]="'/document.pdf'"
      [license]="'My License'"
      [showCircle]="true"
      [showColorPicker]="true"
      [showSelect]="true"
      [showDelete]="true"
    ></pdf-atelier-wrapper>
  `,
})
export class CircleComponent {}
<script setup lang="ts">
import PdfAtelierWrapper from '@innosoft/pdf-atelier-vue';
</script>

<template>
  <PdfAtelierWrapper
    :src="'/document.pdf'"
    :license="'My License'"
    :showCircle="true"
    :showColorPicker="true"
    :showSelect="true"
    :showDelete="true"
  />
</template>

On this page