Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Commit 3d24d7c

Browse files
committed
[2023/11/10] netDxf 3.0.1 Release
1 parent 0a04f1c commit 3d24d7c

File tree

3 files changed

+58
-3
lines changed

3 files changed

+58
-3
lines changed

doc/Changelog.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
## Change history
22

3-
### [2023/08/31]
3+
### [3.0.1 - 2023/10/11]
4+
5+
[2023/08/31]
46
* When creating a table object any leading or trailing white space will be automatically removed.
57
* When reading a spline from a DXF if its degree is larger than 10 it will be set to the maximun allowed.
68
* (fixed) The key of the references dictionary in the TableObjects must be case independent.
79

8-
### [2023/07/15]
10+
[2023/07/15]
911
* (fixed) StackOverflow exception when cloning the extended data associated to an application registry with circular references.
1012

1113
### [3.0.0 - 2023/06/28]

netDxf/netDxf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net48;net6.0</TargetFrameworks>
5-
<Version>3.0.0</Version>
5+
<Version>3.0.1</Version>
66
<Authors>Daniel Carvajal</Authors>
77
<Owners>haplokuon</Owners>
88
<Company>netDxf</Company>

netDxf/netDxf.xml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14265,6 +14265,51 @@
1426514265
</para>
1426614266
</remarks>
1426714267
</member>
14268+
<member name="M:netDxf.Objects.ImageDefinition.#ctor(System.String)">
14269+
<summary>
14270+
Initializes a new instance of the <c>ImageDefinition</c> class. Only available for Net Framework 4.5 builds.
14271+
</summary>
14272+
<param name="file">Image file name with full or relative path.</param>
14273+
<remarks>
14274+
<para>
14275+
The name of the file without extension will be used as the name of the image definition.
14276+
</para>
14277+
<para>
14278+
Supported image formats: BMP, JPG, PNG, TIFF.<br />
14279+
Even thought AutoCAD supports more image formats, this constructor is restricted to the ones the net framework supports in common with AutoCAD.
14280+
Use the generic constructor instead.
14281+
</para>
14282+
<para>
14283+
Note (this is from the ACAD docs): AutoCAD 2000, AutoCAD LT 2000, and later releases do not support LZW-compressed TIFF files,
14284+
with the exception of English language versions sold in the US and Canada.<br />
14285+
If you have TIFF files that were created using LZW compression and want to insert them into a drawing
14286+
you must save the TIFF files with LZW compression disabled.
14287+
</para>
14288+
</remarks>
14289+
</member>
14290+
<member name="M:netDxf.Objects.ImageDefinition.#ctor(System.String,System.String)">
14291+
<summary>
14292+
Initializes a new instance of the <c>ImageDefinition</c> class. Only available for Net Framework 4.5 builds.
14293+
</summary>
14294+
<param name="name">Image definition name.</param>
14295+
<param name="file">Image file name with full or relative path.</param>
14296+
<remarks>
14297+
<para>
14298+
The name assigned to the image definition must be unique.
14299+
</para>
14300+
<para>
14301+
Supported image formats: BMP, JPG, PNG, TIFF.<br />
14302+
Even thought AutoCAD supports more image formats, this constructor is restricted to the ones the .net library supports in common with AutoCAD.
14303+
Use the generic constructor instead.
14304+
</para>
14305+
<para>
14306+
Note (this is from the ACAD docs): AutoCAD 2000, AutoCAD LT 2000, and later releases do not support LZW-compressed TIFF files,
14307+
with the exception of English language versions sold in the US and Canada.<br />
14308+
If you have TIFF files that were created using LZW compression and want to insert them into a drawing
14309+
you must save the TIFF files with LZW compression disabled.
14310+
</para>
14311+
</remarks>
14312+
</member>
1426814313
<member name="P:netDxf.Objects.ImageDefinition.File">
1426914314
<summary>
1427014315
Gets or sets the image file.
@@ -18410,6 +18455,14 @@
1841018455
Gets the owner of the actual text style.
1841118456
</summary>
1841218457
</member>
18458+
<member name="M:netDxf.Tables.TextStyle.TrueTypeFontFamilyName(System.String)">
18459+
<summary>
18460+
Find the font family name of an specified TTF font file. Only available for Net Framework 4.5 builds.
18461+
</summary>
18462+
<param name="ttfFont">TTF font file.</param>
18463+
<returns>The font family name of the specified TTF font file.</returns>
18464+
<remarks>This method will return an empty string if the specified font is not found in its path or the system font folder or if it is not a valid TTF font.</remarks>
18465+
</member>
1841318466
<member name="M:netDxf.Tables.TextStyle.HasReferences">
1841418467
<summary>
1841518468
Checks if this instance has been referenced by other DxfObjects.

0 commit comments

Comments
 (0)