Albert Domenech
Albert Domenech
Hi @CatarinaVCh, I've tested this again and it seems that only `MText` adapts the Chinese characters correctly. To solve this you need to create a `TextStyle` compatible with them, like...
Which software are you using? Can you add the characters for a file that has not been created with `ACadSharp`? Can you share the code that you are using to...
Ok, so you can create text in Autocad using Chinese characters, if that's the case, check the text style that Autocad is using and try to match the properties with...
You can try to change the file encoding then: ```C# CadDocument.Header.CodePage = "GB2312"; //Chinese simplified code page (GB2312) ``` Maybe for your version is needed. Another test you can try...
Hi @KyleeChangg The current state of the library doesn't allow to export the file in PDF, I might take a look after the v1 is released.
It not functional yet but I started to take a look: https://github.com/DomCR/ACadSharp.Pdf
Hi @donnyv I've tested the file and seems to work fine, which version are you using?
Hi @donnyv, You are using the `DwgReader` for a dxf file, please try to use `DxfReader` instead. Hope this helps.
Hi @jhvjnr, The file that you send me doesn't have any polyline, all the entities seem to be proxy entities which are not stored in the file unless specified by...
You can set the flag `KeepUnknownEntities` in the reader configuration to true so it keeps all these entities as unknown, but as @DJGosnell said, they will not contain any geometric...