@mlightcad/libredwg-web
Version:
A DWG/DXF JavaScript parser based on libredwg
636 lines • 30.3 kB
TypeScript
import { MainModule } from '../wasm/libredwg-web';
import createModule from '../wasm/libredwg-web.js';
import { DwgCodePage, DwgDatabase, DwgPoint2D, DwgPoint3D, DwgPoint4D, DwgVersion } from './database';
import { Dwg_Array_Ptr, Dwg_Class, Dwg_Color, Dwg_Data_Ptr, Dwg_Entity_BLOCK, Dwg_Entity_IMAGE_Ptr, Dwg_Entity_LWPOLYLINE_Ptr, Dwg_Entity_MTEXT_Ptr, Dwg_Entity_POLYLINE_2D_Ptr, Dwg_Entity_POLYLINE_3D_Ptr, Dwg_Entity_TEXT_Ptr, Dwg_Entity_VERTEX_2D, Dwg_Field_Value, Dwg_Handle, Dwg_HATCH_DefLine, Dwg_HATCH_Path, Dwg_LTYPE_Dash, Dwg_MLINE_Vertex, Dwg_Object_BLOCK_HEADER_Ptr, Dwg_Object_BLOCK_Ptr, Dwg_Object_DIMSTYLE_Ptr, Dwg_Object_Entity_Ptr, Dwg_Object_Entity_TIO_Ptr, Dwg_Object_Generic_Ptr, Dwg_Object_IMAGEDEF_Ptr, Dwg_Object_LAYER_Ptr, Dwg_Object_LTYPE_Ptr, Dwg_Object_Object_Ptr, Dwg_Object_Object_TIO_Ptr, Dwg_Object_Ptr, Dwg_Object_Ref, Dwg_Object_Ref_Ptr, Dwg_Object_STYLE_Ptr, Dwg_Object_Type, Dwg_Object_VERTEX_2D_Ptr, Dwg_Object_VERTEX_3D_Ptr, Dwg_Object_VPORT_Ptr, Dwg_TABLE_Cell } from './types';
export { createModule };
export type LibreDwgEx = LibreDwg & MainModule;
export declare enum DwgThumbnailImageType {
BMP = 2,
WMF = 3,
PNG = 6
}
export interface DwgThumbnail {
data: Uint8Array;
type: DwgThumbnailImageType;
}
export declare class LibreDwg {
static instance: LibreDwgEx;
private wasmInstance;
private decoder?;
private constructor();
dwg_read_data(fileContent: string | ArrayBuffer, fileType: number): number | undefined;
/**
* Gets the version of the dwg.
* @param data Pointer to Dwg_Data instance.
* @returns Return the version of the dwg
*/
dwg_get_version_type(data: Dwg_Data_Ptr): DwgVersion;
/**
* Gets code page of the dwg.
* @param data Pointer to Dwg_Data instance.
* @returns Return code page of the dwg
*/
dwg_get_codepage(data: Dwg_Data_Ptr): DwgCodePage;
/**
* Extracts thumbnail image from dwg.
* @param data Pointer to Dwg_Data instance.
* @returns Return thumbnail image data
*/
dwg_bmp(data: Dwg_Data_Ptr): DwgThumbnail | null;
/**
* Returns the number of classes in dwg file.
* @param data Pointer to Dwg_Data instance.
* @returns Returns the number of classes in dwg file.
*/
dwg_get_num_classes(data: Dwg_Data_Ptr): number;
/**
* Returns the nth class in dwg file.
* @param data Pointer to Dwg_Data instance.
* @param index Index of the class
* @returns Returns the nth class in dwg file.
*/
dwg_get_class(data: Dwg_Data_Ptr, index: number): Dwg_Class;
/**
* Converts Dwg_Data instance to DwgDatabase instance. DwgDatabase instance doesn't depend on
* Dwg_Data instance any more after conversion. So you can call function dwg_free to free memory
* occupied by Dwg_Data.
* @param data Pointer to Dwg_Data instance.
* @returns Returns the converted DwgDatabase.
*/
convert(data: Dwg_Data_Ptr): DwgDatabase;
/**
* Converts Dwg_Data instance to DwgDatabase instance and returns conversion statistics.
* DwgDatabase instance doesn't depend on Dwg_Data instance any more after conversion.
* So you can call function dwg_free to free memory occupied by Dwg_Data.
* @param data Pointer to Dwg_Data instance.
* @returns Returns the converted DwgDatabase and conversion statistics.
*/
convertEx(data: Dwg_Data_Ptr): {
database: DwgDatabase;
stats: {
unknownEntityCount: number;
};
};
/**
* Converts DwgDatabase instance to svg string.
* @param data DwgDatabase instance.
* @returns Returns the converted svg string.
*/
dwg_to_svg(data: DwgDatabase): string;
/**
* Frees the whole DWG. all tables, sections, objects, ...
* @param data Pointer to Dwg_Data instance.
*/
dwg_free(data: Dwg_Data_Ptr): void;
/**
* Frees the object (all three structs and its fields)
* @group Dwg_Object Methods
* @param ptr Pointer to one Dwg_Object instance.
*/
dwg_free_object(obj_ptr: Dwg_Object_Ptr): void;
/**
* Gets an object by its handle.
* @group Handle Conversion Methods
* @param data Pointer to Dwg_Data instance.
* @param ref_ptr Pointer to Dwg_Object_Ref instance.
* @returns Returns the object whose handle is equal to the given handle.
*/
dwg_ref_object(data: Dwg_Data_Ptr, ref_ptr: Dwg_Object_Ref_Ptr): Dwg_Object_Ptr;
/**
* Gets an object by its handle without warning message.
* @group Handle Conversion Methods
* @param data Pointer to Dwg_Data instance.
* @param ref_ptr Pointer to Dwg_Object_Ref instance.
* @returns Returns the object whose handle is equal to the given handle.
*/
dwg_ref_object_silent(data: Dwg_Data_Ptr, ref_ptr: Dwg_Object_Ref_Ptr): Dwg_Object_Ptr;
/**
* Gets an object given its handle and relative base object.
* @group Handle Conversion Methods
* @param data Pointer to Dwg_Data instance.
* @param ref_ptr Pointer to Dwg_Object_Ref instance.
* @param obj_ptr Pointer to the relative base object (Dwg_Object instance).
* @returns Returns the object given its handle and relative base object.
*/
dwg_ref_object_relative(data: Dwg_Data_Ptr, ref_ptr: Dwg_Object_Ref_Ptr, obj_ptr: Dwg_Object_Ptr): Dwg_Object_Ptr;
/**
* Resolves handle absref value to Dwg_Object instance.
* @group Handle Conversion Methods
* @param data Pointer to Dwg_Data instance.
* @param absref Handle absref value.
* @returns Returns the object with the given handle absref value.
*/
dwg_resolve_handle(data: Dwg_Data_Ptr, absref: bigint): Dwg_Object_Ptr;
/**
* Resolves handle absref value to Dwg_Object instance without warning message.
* @group Handle Conversion Methods
* @param data Pointer to Dwg_Data instance.
* @param absref Handle absref value.
* @returns Returns the object with the given handle absref value.
*/
dwg_resolve_handle_silent(data: Dwg_Data_Ptr, absref: bigint): Dwg_Object_Ptr;
/**
* Sets ref->absolute_ref from the specified obj for a subsequent dwg_resolve_handle
* @group Handle Conversion Methods
* @param ref_ptr Pointer to Dwg_Object_Ref instance.
* @param obj_ptr Pointer to Dwg_Object instance.
* @returns Returns 1 if set absref value correctly. Otherwise, return 0.
*/
dwg_resolve_handleref(ref_ptr: Dwg_Object_Ref_Ptr, obj_ptr: Dwg_Object_Ptr): number;
/**
* Returns object (such as line type, layer name, dimension style, and etc.) name by its handle.
* @group Handle Conversion Methods
* @param ref_ptr Pointer to Dwg_Object_Ref instance.
* @returns Returns object name by its handle.
*/
dwg_ref_get_object_name(ref_ptr: Dwg_Object_Ref_Ptr): string;
/**
* Converts Dwg_Object_Object instance to Dwg_Object instance.
* @group Object Conversion Methods
* @param obj_ptr Pointer to Dwg_Object_Object instance.
* @returns Returns one pointer to Dwg_Object instance.
*/
dwg_obj_obj_to_object(obj_obj_ptr: Dwg_Object_Object_Ptr): Dwg_Object_Ptr;
/**
* Converts Dwg_Object_* instance to Dwg_Object instance.
* @group Object Conversion Methods
* @param obj_generic_ptr Pointer to Dwg_Object_* instance.
* @returns Returns one pointer to Dwg_Object instance.
*/
dwg_obj_generic_to_object(obj_generic_ptr: Dwg_Object_Generic_Ptr): Dwg_Object_Ptr;
/**
* Converts Dwg_Object instance to Dwg_Object_Object instance.
* @group Object Conversion Methods
* @param obj_ptr Pointer to Dwg_Object instance.
* @returns Returns one pointer to Dwg_Object_Object instance.
*/
dwg_object_to_object(obj_ptr: Dwg_Object_Ptr): Dwg_Object_Object_Ptr;
/**
* Gets Dwg_Object_* instance (such as Dwg_Entity_LAYER, Dwg_Entity_STYLE, and etc.)
* from Dwg_Object instance.
* @group Object Conversion Methods
* @param obj_ptr Pointer to Dwg_Object instance.
* @returns Returns one pointer to Dwg_Object_Object_TIO_Ptr instance.
*/
dwg_object_to_object_tio(obj_ptr: Dwg_Object_Ptr): Dwg_Object_Object_TIO_Ptr;
/**
* Converts Dwg_Object instance to Dwg_Object_Entity instance.
* @group Object Conversion Methods
* @param obj_ptr Pointer to Dwg_Object instance.
* @returns Returns one pointer to Dwg_Object_Entity instance.
*/
dwg_object_to_entity(obj_ptr: Dwg_Object_Ptr): Dwg_Object_Entity_Ptr;
/**
* Gets Dwg_Entity_* instance (such as Dwg_Entity_LINE, Dwg_Entity_SPLINE, and etc.)
* from Dwg_Object instance.
* @group Object Conversion Methods
* @param obj_ptr Pointer to Dwg_Object instance.
* @returns Returns one pointer to Dwg_Object_Object_TIO_Ptr instance.
*/
dwg_object_to_entity_tio(obj_ptr: Dwg_Object_Ptr): Dwg_Object_Object_TIO_Ptr;
/**
* Returns all of entities in the model space. Each item in returned array
* is one Dwg_Object pointer (Dwg_Object*).
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of entities in the model space.
*/
dwg_getall_entities_in_model_space(data: Dwg_Data_Ptr): number[];
/**
* Returns all of objects in Dwg_Data instance with the specified type.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @param type Object type.
* @returns Returns all of objects with the specified type.
*/
dwg_getall_object_by_type(data: Dwg_Data_Ptr, type: Dwg_Object_Type): Dwg_Object_Object_TIO_Ptr[];
/**
* Returns all of objects in Dwg_Data instance with the specified type.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @param type Object type.
* @returns Returns all of objects with the specified type.
*/
dwg_getall_entity_by_type(data: Dwg_Data_Ptr, type: Dwg_Object_Type): Dwg_Object_Entity_TIO_Ptr[];
/**
* Returns all of layer objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of layer objects in Dwg_Data instance.
*/
dwg_getall_LAYER(data: Dwg_Data_Ptr): Dwg_Object_LAYER_Ptr[];
/**
* Returns all of line type objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of line type objects in Dwg_Data instance.
*/
dwg_getall_LTYPE(data: Dwg_Data_Ptr): Dwg_Object_LTYPE_Ptr[];
/**
* Returns all of text style objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of text style objects in Dwg_Data instance.
*/
dwg_getall_STYLE(data: Dwg_Data_Ptr): Dwg_Object_STYLE_Ptr[];
/**
* Returns all of dimension style objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of dimension style objects in Dwg_Data instance.
*/
dwg_getall_DIMSTYLE(data: Dwg_Data_Ptr): Dwg_Object_DIMSTYLE_Ptr[];
/**
* Returns all of viewport objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of viewport objects in Dwg_Data instance.
*/
dwg_getall_VPORT(data: Dwg_Data_Ptr): Dwg_Object_VPORT_Ptr[];
/**
* Returns all of layout objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of layout objects in Dwg_Data instance.
*/
dwg_getall_LAYOUT(data: Dwg_Data_Ptr): number[];
/**
* Returns all of block objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of block objects in Dwg_Data instance.
*/
dwg_getall_BLOCK(data: Dwg_Data_Ptr): Dwg_Object_BLOCK_Ptr[];
/**
* Returns all of block header objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of block header objects in Dwg_Data instance.
*/
dwg_getall_BLOCK_HEADER(data: Dwg_Data_Ptr): Dwg_Object_BLOCK_HEADER_Ptr[];
/**
* Returns all of image definition objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of image definition objects in Dwg_Data instance.
*/
dwg_getall_IMAGEDEF(data: Dwg_Data_Ptr): Dwg_Object_IMAGEDEF_Ptr[];
/**
* Returns all of 2d vertex objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of 2d vertex objects in Dwg_Data instance.
*/
dwg_getall_VERTEX_2D(data: Dwg_Data_Ptr): Dwg_Object_VERTEX_2D_Ptr[];
/**
* Returns all of 3d vertex objects in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of 3d vertex objects in Dwg_Data instance.
*/
dwg_getall_VERTEX_3D(data: Dwg_Data_Ptr): Dwg_Object_VERTEX_3D_Ptr[];
/**
* Returns all of 2d polyline entities in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of 2d polyline entities in Dwg_Data instance.
*/
dwg_getall_POLYLINE_2D(data: Dwg_Data_Ptr): Dwg_Entity_POLYLINE_2D_Ptr[];
/**
* Returns all of 3d polyline entities in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of 3d polyline entities in Dwg_Data instance.
*/
dwg_getall_POLYLINE_3D(data: Dwg_Data_Ptr): Dwg_Entity_POLYLINE_3D_Ptr[];
/**
* Returns all of image entities in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of image entities in Dwg_Data instance.
*/
dwg_getall_IMAGE(data: Dwg_Data_Ptr): Dwg_Entity_IMAGE_Ptr[];
/**
* Returns all of lwpolyline entities in Dwg_Data instance.
* @group GetAll Methods
* @param data Pointer to Dwg_Data instance.
* @returns Returns all of lwpolyline entities in Dwg_Data instance.
*/
dwg_getall_LWPOLYLINE(data: Dwg_Data_Ptr): Dwg_Entity_LWPOLYLINE_Ptr[];
/**
* Converts one C++ unsigned char array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ unsigned char array.
* @param size The size of C++ unsigned char array.
* @returns Returns one JavaScript number array from the specified C++ unsigned char array.
*/
dwg_ptr_to_unsigned_char_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ signed char array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ signed char array.
* @param size The size of C++ signed char array.
* @returns Returns one JavaScript number array from the specified C++ signed char array.
*/
dwg_ptr_to_signed_char_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ unsigned int16 array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ unsigned int16 array.
* @param size The size of C++ unsigned int16 array.
* @returns Returns one JavaScript number array from the specified C++ unsigned int16 array.
*/
dwg_ptr_to_uint16_t_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ int16 array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ int16 array.
* @param size The size of C++ int16 array.
* @returns Returns one JavaScript number array from the specified C++ int16 array.
*/
dwg_ptr_to_int16_t_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ unsigned int32 array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ unsigned int32 array.
* @param size The size of C++ unsigned int32 array.
* @returns Returns one JavaScript number array from the specified C++ unsigned int32 array.
*/
dwg_ptr_to_uint32_t_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ int32 array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ int32 array.
* @param size The size of C++ int32 array.
* @returns Returns one JavaScript number array from the specified C++ int32 array.
*/
dwg_ptr_to_int32_t_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ unsigned int64 array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ unsigned int64 array.
* @param size The size of C++ unsigned int64 array.
* @returns Returns one JavaScript number array from the specified C++ unsigned int64 array.
*/
dwg_ptr_to_uint64_t_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ int64 array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ int64 array.
* @param size The size of C++ int64 array.
* @returns Returns one JavaScript number array from the specified C++ int64 array.
*/
dwg_ptr_to_int64_t_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ double array to one JavaScript number array.
* @group Array Methods
* @param ptr Pointer to C++ double array.
* @param size The size of C++ double array.
* @returns Returns one JavaScript number array from the specified C++ double array.
*/
dwg_ptr_to_double_array(ptr: Dwg_Array_Ptr, size: number): number[];
/**
* Converts one C++ 2d point array to one JavaScript 2d point array.
* @group Array Methods
* @param ptr Pointer to C++ 2d point array.
* @param size The size of C++ 2 point array.
* @returns Returns one JavaScript 2d point array from the specified C++ 2d point array.
*/
dwg_ptr_to_point2d_array(ptr: Dwg_Array_Ptr, size: number): DwgPoint2D[];
/**
* Converts one C++ 3d point array to one JavaScript 3d point array.
* @group Array Methods
* @param ptr Pointer to C++ 3d point array.
* @param size The size of C++ 3d point array.
* @returns Returns one JavaScript 3d point array from the specified C++ 3d point array.
*/
dwg_ptr_to_point3d_array(ptr: Dwg_Array_Ptr, size: number): DwgPoint3D[];
/**
* Converts one C++ 4d point array to one JavaScript 4d point array.
* @group Array Methods
* @param ptr Pointer to C++ 4d point array.
* @param size The size of C++ 4d point array.
* @returns Returns one JavaScript 4d point array from the specified C++ 4d point array.
*/
dwg_ptr_to_point4d_array(ptr: Dwg_Array_Ptr, size: number): DwgPoint4D[];
/**
* Converts one C++ line type array to one JavaScript line type array.
* @group Array Methods
* @param ptr Pointer to C++ line type array.
* @param size The size of C++ line type array.
* @returns Returns one JavaScript line type array from the specified C++ line type array.
*/
dwg_ptr_to_ltype_dash_array(ptr: Dwg_Array_Ptr, size: number): Dwg_LTYPE_Dash[];
/**
* Converts one C++ table cell array to one JavaScript table cell array.
* @group Array Methods
* @group Dwg_Entity_TABLE Methods
* @param ptr Pointer to C++ table cell array.
* @param size The size of C++ table cell array.
* @returns Returns one JavaScript table cell array from the specified C++ table cell array.
*/
dwg_ptr_to_table_cell_array(ptr: Dwg_Array_Ptr, size: number): Dwg_TABLE_Cell[];
/**
* Converts one C++ hatch definition line array to one JavaScript hatch definition line array.
* @group Array Methods
* @group Dwg_Entity_HATCH Methods
* @param ptr Pointer to C++ hatch definition line array.
* @param size The size of C++ hatch definition line array.
* @returns Returns one JavaScript hatch definition line array from the specified C++ hatch definition line array.
*/
dwg_ptr_to_hatch_defline_array(ptr: Dwg_Array_Ptr, size: number): Dwg_HATCH_DefLine[];
/**
* Converts one C++ hatch path array to one JavaScript hatch path array.
* @group Array Methods
* @group Dwg_Entity_HATCH Methods
* @param ptr Pointer to C++ hatch path array.
* @param size The size of C++ hatch path array.
* @returns Returns one JavaScript hatch path array from the specified C++ hatch path array.
*/
dwg_ptr_to_hatch_path_array(ptr: Dwg_Array_Ptr, size: number): Dwg_HATCH_Path[];
/**
* Converts one C++ mline vertex array to one JavaScript mline vertex array.
* @group Array Methods
* @group Dwg_Entity_MLINE Methods
* @param ptr Pointer to C++ mline vertex array.
* @param size The size of C++ mline vertex array.
* @returns Returns one JavaScript mline vertex array from the specified C++ mline vertex array.
*/
dwg_ptr_to_mline_vertex_array(ptr: Dwg_Array_Ptr, size: number): Dwg_MLINE_Vertex[];
/**
* Generic field value getter. Used to get the field value of one object or entity.
* @group Dynamic API Methods
* @param obj Pointer to one object or entity
* @param field Field name of one object or entity
* @returns Returns the field value of one object or entity.
*/
dwg_dynapi_entity_value(obj: Dwg_Object_Object_TIO_Ptr | Dwg_Object_Entity_TIO_Ptr, field: string): Dwg_Field_Value;
/**
* Header field value getter. Used to get the field value of dwg/dxf header.
* @group Dynamic API Methods
* @param data Pointer to Dwg_Data instance.
* @param field Field name of header.
* @returns Returns the field value of dwg/dxf header.
*/
dwg_dynapi_header_value(data: Dwg_Data_Ptr, field: string): Dwg_Field_Value;
/**
* The common field value getter. Used to get the value of object or entity common fields.
* @group Dynamic API Methods
* @param obj Pointer to one object or entity
* @param field The name of object or entity common fields.
* @returns Returns the value of object or entity common fields.
*/
dwg_dynapi_common_value(obj: Dwg_Object_Object_TIO_Ptr | Dwg_Object_Entity_TIO_Ptr, field: string): Dwg_Field_Value;
/**
* The field of one object or entity may not be primitive type. It means one field may consist of
* multiple sub-fields. This method is used to get the sub-field value of those complex field.
* @group Dynamic API Methods
* @param obj Pointer to one object or entity.
* @param subclass The class name of the field with complex type.
* @param field The field name of one object or entit.
* @returns Returns the sub-field value of one complex field.
*/
dwg_dynapi_subclass_value(obj: Dwg_Object_Object_TIO_Ptr | Dwg_Object_Entity_TIO_Ptr, subclass: string, field: string): Dwg_Field_Value;
/**
* Returns the handle of one Dwg_Object instance.
* @group Dwg_Object Methods
* @param ptr Pointer to one Dwg_Object instance.
* @returns Returns the handle of one Dwg_Object instance.
*/
dwg_object_get_handle_object(ptr: Dwg_Object_Ptr): Dwg_Handle;
/**
* Returns the handle of one Dwg_Object_Object instance.
* @group Dwg_Object_Object Methods
* @param ptr Pointer to one Dwg_Object_Object instance.
* @returns Returns the handle of one Dwg_Object_Object instance.
*/
dwg_object_object_get_handle_object(ptr: Dwg_Object_Object_Ptr): Dwg_Handle;
/**
* Returns the owner handle of one Dwg_Object_Object instance.
* @group Dwg_Object_Object Methods
* @param ptr Pointer to one Dwg_Object_Object instance.
* @returns Returns the owner handle of one Dwg_Object_Object instance.
*/
dwg_object_object_get_ownerhandle_object(ptr: Dwg_Object_Object_Ptr): Dwg_Object_Ref;
/**
* Returns the handle of one Dwg_Object_Entity instance.
* @group Dwg_Object_Entity Methods
* @param ptr Pointer to one Dwg_Object_Entity instance.
* @returns Returns the handle of one Dwg_Object_Entity instance.
*/
dwg_object_entity_get_handle_object(ptr: Dwg_Object_Entity_Ptr): Dwg_Handle;
/**
* Returns the owner handle of one Dwg_Object_Entity instance.
* @group Dwg_Object_Entity Methods
* @param ptr Pointer to one Dwg_Object_Entity instance.
* @returns Returns the owner handle of one Dwg_Object_Entity instance.
*/
dwg_object_entity_get_ownerhandle_object(ptr: Dwg_Object_Entity_Ptr): Dwg_Object_Ref;
/**
* Returns the layer handle of one Dwg_Object_Entity instance.
* @group Dwg_Object_Entity Methods
* @param ptr Pointer to one Dwg_Object_Entity instance.
* @returns Returns the layer handle of one Dwg_Object_Entity instance.
*/
dwg_object_entity_get_layer_object_ref(ptr: Dwg_Object_Entity_Ptr): Dwg_Object_Ref;
/**
* Returns the line type handle of one Dwg_Object_Entity instance.
* @group Dwg_Object_Entity Methods
* @param ptr Pointer to one Dwg_Object_Entity instance.
* @returns Returns the line type handle of one Dwg_Object_Entity instance.
*/
dwg_object_entity_get_ltype_object_ref(ptr: Dwg_Object_Entity_Ptr): Dwg_Object_Ref;
/**
* Returns color value of one Dwg_Object_Entity instance.
* @group Dwg_Object_Entity Methods
* @param ptr Pointer to one Dwg_Object_Entity instance.
* @returns Returns color value of one Dwg_Object_Entity instance.
*/
dwg_object_entity_get_color_object(ptr: Dwg_Object_Entity_Ptr): Dwg_Color;
/**
* Returns block name of one Dwg_Entity_* instance with one block field. For example,
* dimension entities have one 'block' field which represents the block that contains
* the entities that make up the dimension picture.
* @group Dwg_Entity_* Methods
* @param ptr Pointer to one Dwg_Entity_* instance with one block field.
* @param field Field name of the block.
* @returns Returns block name of one Dwg_Entity_* instance.
*/
dwg_entity_get_block_name(ptr: Dwg_Object_Entity_TIO_Ptr, field: string): string;
/**
* Returns dimension style name of one Dwg_Entity_* instance with one dimension style
* field.
* @group Dwg_Entity_* Methods
* @param ptr Pointer to one Dwg_Entity_* instance.
* @param field Field name of the dimension style.
* @returns Returns dimension style name of one Dwg_Entity_* instance.
*/
dwg_entity_get_dimstyle_name(ptr: Dwg_Object_Entity_TIO_Ptr, field?: string): string;
/**
* Returns block entity pointed by the specified block header.
* @group Dwg_Entity_BLOCK_HEADER Methods
* @param ptr Pointer to one Dwg_Entity_BLOCK_HEADER instance.
* @returns Returns block entity pointed by the specified block header.
*/
dwg_entity_block_header_get_block(ptr: Dwg_Object_BLOCK_HEADER_Ptr): Dwg_Entity_BLOCK;
/**
* Returns preview image of the block pointed by the specified block header.
* @group Dwg_Entity_BLOCK_HEADER Methods
* @param ptr Pointer to one Dwg_Entity_BLOCK_HEADER instance.
* @returns Returns preview image of the block pointed by the specified block header.
*/
dwg_entity_block_header_get_preview(ptr: Dwg_Object_BLOCK_HEADER_Ptr): Uint8Array;
/**
* Returns the first entity owned by the block header or null
* @group Dwg_Entity_BLOCK_HEADER Methods
* @param ptr Pointer to the block header.
* @returns Returns the first entity owned by the block header or null
*/
get_first_owned_entity(ptr: Dwg_Object_Ptr): Dwg_Object_Ptr;
/**
* Returns the next entity owned by the block header or null.
* @group Dwg_Entity_BLOCK_HEADER Methods
* @param ptr Pointer to the block header.
* @param current Pointer to the current entity in the block header.
* @returns Returns the next entity owned by the block header or null.
*/
get_next_owned_entity(ptr: Dwg_Object_Ptr, current: Dwg_Object_Ptr): Dwg_Object_Ptr;
/**
* Returns text style name of one Dwg_Entity_MTEXT instance.
* @group Dwg_Entity_MTEXT Methods
* @param ptr Pointer to one Dwg_Entity_MTEXT instance.
* @returns Returns text style name of one Dwg_Entity_MTEXT instance.
*/
dwg_entity_mtext_get_style_name(ptr: Dwg_Entity_MTEXT_Ptr): string;
/**
* Returns text style name of one Dwg_Entity_TEXT instance.
* @group Dwg_Entity_TEXT Methods
* @param ptr Pointer to one Dwg_Entity_TEXT instance.
* @returns Returns text style name of one Dwg_Entity_TEXT instance.
*/
dwg_entity_text_get_style_name(ptr: Dwg_Entity_TEXT_Ptr): string;
/**
* Returns the number of points in Dwg_Entity_POLYLINE_2D.
* @group Dwg_Entity_POLYLINE_2D Methods
* @param ptr Pointer to one Dwg_Object (not Dwg_Entity_POLYLINE_2D) instance.
* @returns Returns the number of points in one Dwg_Entity_POLYLINE_2D.
*/
dwg_entity_polyline_2d_get_numpoints(ptr: Dwg_Object_Ptr): number;
/**
* Returns points in Dwg_Entity_POLYLINE_2D.
* @group Dwg_Entity_POLYLINE_2D Methods
* @param ptr Pointer to one Dwg_Object (not Dwg_Entity_POLYLINE_2D) instance.
* @returns Returns points in one Dwg_Entity_POLYLINE_2D.
*/
dwg_entity_polyline_2d_get_points(ptr: Dwg_Object_Ptr): DwgPoint2D[];
/**
* Returns vertices in Dwg_Entity_POLYLINE_2D.
* @group Dwg_Entity_POLYLINE_2D Methods
* @param ptr Pointer to one Dwg_Object (not Dwg_Entity_POLYLINE_2D) instance.
* @returns Returns vertices in one Dwg_Entity_POLYLINE_2D.
*/
dwg_entity_polyline_2d_get_vertices(ptr: Dwg_Object_Ptr): Dwg_Entity_VERTEX_2D[];
static createByWasmInstance(wasmInstance: MainModule): LibreDwgEx;
static create(filepath?: string): Promise<LibreDwgEx>;
}
//# sourceMappingURL=libredwg.d.ts.map