@ironsoftware/ironpdf
Version:
IronPDF for Node
31 lines (27 loc) • 1.17 kB
text/typescript
// Original file: src/internal/IronPdfEngine.ProtoFiles/pdfium_text.proto
import type { PdfDocumentP as _ironpdfengineproto_PdfDocumentP, PdfDocumentP__Output as _ironpdfengineproto_PdfDocumentP__Output } from '../ironpdfengineproto/PdfDocumentP';
import type { PdfiumFontInfoP as _ironpdfengineproto_PdfiumFontInfoP, PdfiumFontInfoP__Output as _ironpdfengineproto_PdfiumFontInfoP__Output } from '../ironpdfengineproto/PdfiumFontInfoP';
export interface PdfiumDrawTextRequestP {
'document'?: (_ironpdfengineproto_PdfDocumentP | null);
'pageIndex'?: (number);
'text'?: (string);
'font'?: (_ironpdfengineproto_PdfiumFontInfoP | null);
'fontSize'?: (number | string);
'x'?: (number | string);
'y'?: (number | string);
'scale'?: (number | string);
'rotation'?: (number | string);
'color'?: (string);
}
export interface PdfiumDrawTextRequestP__Output {
'document'?: (_ironpdfengineproto_PdfDocumentP__Output);
'pageIndex'?: (number);
'text'?: (string);
'font'?: (_ironpdfengineproto_PdfiumFontInfoP__Output);
'fontSize'?: (number);
'x'?: (number);
'y'?: (number);
'scale'?: (number);
'rotation'?: (number);
'color'?: (string);
}