| Server IP : 159.203.156.69 / Your IP : 216.73.217.172 Web Server : nginx/1.24.0 System : Linux main-ubuntu 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/tanviranik.com/node_modules/@resvg/resvg-wasm/ |
Upload File : |
// Generated by dts-bundle-generator v6.12.0
declare class BBox {
free(): void;
/**
*/
height: number;
/**
*/
width: number;
/**
*/
x: number;
/**
*/
y: number;
}
declare class RenderedImage {
free(): void;
/**
* Write the image data to Uint8Array
* @returns {Uint8Array}
*/
asPng(): Uint8Array;
/**
* Get the PNG height
*/
readonly height: number;
/**
* Get the RGBA pixels of the image
*/
readonly pixels: Uint8Array;
/**
* Get the PNG width
*/
readonly width: number;
}
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
export type ResvgRenderOptions = {
dpi?: number;
languages?: string[];
shapeRendering?: 0 // optimizeSpeed
| 1 // crispEdges
| 2; // geometricPrecision
textRendering?: 0 // optimizeSpeed
| 1 // optimizeLegibility
| 2; // geometricPrecision'
imageRendering?: 0 // optimizeQuality
| 1; // optimizeSpeed
fitTo?: {
mode: "original";
} | {
mode: "width";
value: number;
} | {
mode: "height";
value: number;
} | {
mode: "zoom";
value: number;
};
background?: string; // Support CSS3 color, e.g. rgba(255, 255, 255, .8)
crop?: {
left: number;
top: number;
right?: number;
bottom?: number;
};
};
/**
* Initialize Wasm module
* @param module_or_path WebAssembly Module or .wasm url
*
*/
export declare const initWasm: (module_or_path: Promise<InitInput> | InitInput) => Promise<void>;
export declare const Resvg: {
new (svg: Uint8Array | string, options?: ResvgRenderOptions | undefined): {
free(): void;
render(): RenderedImage;
toString(): string;
innerBBox(): BBox | undefined;
getBBox(): BBox | undefined;
cropByBBox(bbox: BBox): void;
imagesToResolve(): Array<string>;
resolveImage(href: string, buffer: Uint8Array): void;
readonly height: number;
readonly width: number;
};
};