UNPKG

@mescius/dspdfviewer

Version:
51 lines (50 loc) 2.02 kB
import { LineEndStyle } from "../Annotations/AnnotationTypes"; export declare function findDefaultAnnotationIconSize(iconName: string, maxSize?: number): { width: number; height: number; }; export declare class AnnotationsSvgFactory { private static _instance; /** * Singleton. * */ static instance(): AnnotationsSvgFactory; private constructor(); create(width: number, height: number, attributes?: any, innerHtml?: string | null): SVGElement; createElement(type: string): SVGElement; createSvgRect(params: { x: number; y: number; w: number; h: number; stroke?: string; strokeWidth?: number; fill?: string; strokeDashArray?: string; }): SVGElement; getLineAppearance(view: number[], rect: number[], lineCoordinates: number[], strokeColor: string, fillColor: string, strokeWidth: number, dashArray?: number[] | null, lineStart?: LineEndStyle, lineEnd?: LineEndStyle, callerId?: string): SVGElement; /** * * @param svg * @param rect origin is bottom/left * @param lineCoordinates * @param strokeColor * @param fillColor * @param strokeWidth * @param dashArray * @param lineStart * @param lineEnd * @param callerId */ createSvgLine(svg: any, view: number[], rect: number[], lineCoordinates: number[], strokeColor: string, fillColor: string, strokeWidth: number, dashArray?: number[] | null, lineStart?: LineEndStyle, lineEnd?: LineEndStyle, callerId?: string): SVGElement; getLineEndGraphics(lineEnd: LineEndStyle, params: { isStart?: boolean; strokeColor?: string; fillColor?: string; caller?: string; }): { markerId: string; markerGraphics: string; }; generateSvgLineHtml(x1: number, y1: number, x2: number, y2: number, lineWidth: number, dashArray: number[] | null, strokeColor: string, markerId?: string): string; }