Skip to main content

I've noticed that FME converts AutoCAD text into a point at the bottom left justification of the text even though my CAD drawing has the text justified middle center. Is there any way to adjust where FME reads the text into a point? Thank you.

Tyler

FME(R) 2020.2.1.0 (20201130 - Build 20806 - WIN64)

Filter the text featuretypes via GeometryFilter and use an AttributeExposer to get the insertion point of the acadfeature: autocad_alignment_x, y, and z.

autocad_alignmentThen just use a VertexCreator (+LabelPointReplacer + Rotator) to replace everything to the correct coordinates, size and rotation.

autocad_vs_inspector_text


Filter the text featuretypes via GeometryFilter and use an AttributeExposer to get the insertion point of the acadfeature: autocad_alignment_x, y, and z.

autocad_alignmentThen just use a VertexCreator (+LabelPointReplacer + Rotator) to replace everything to the correct coordinates, size and rotation.

autocad_vs_inspector_text

Thank you!


Reply