PDF Atelier Logo

PDF Atelier

Text

Editable text box annotations with configurable font size and click-to-insert workflow.

Text Tool

Enables text annotation insertion with:

  • Font Size: Configurable per text box (default: 18px)
  • Positioning: Click-to-insert workflow
  • Editing: Double-click to edit existing text
  • Export: Text remains as vector in exported PDF (selectable)

Prop

Type

Implementation

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

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

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

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

On this page