Search found 6 matches

by Vilo
03 Jan 2012, 13:14
Forum: CAD DLL
Topic: SVG file drawing issues
Replies: 2
Views: 32215

Re: SVG file drawing issues

Yes indeed, by converting the "InkScape" texts to standards "TEXT", it works.
Thanks for you reply ;-)
by Vilo
28 Dec 2011, 19:27
Forum: CAD DLL
Topic: SVG file drawing issues
Replies: 2
Views: 32215

SVG file drawing issues

Hi all, I'm loading the svg file attached with CADImporterDLL, and drawing it to a windows canvas. The 1rst issue is that no text is rendered. Is that a known limitation of CAImporterDLL's SVG handling ? The 2nd issue concerns the "PAGE" in this SVG. Is there a way to access the page dimensions ? Tk...
by Vilo
27 Nov 2007, 12:54
Forum: CAD VCL
Topic: DXFExportVCL : how to export "multi Layers" DXF ?
Replies: 9
Views: 42821

Ok, I've managed to export MultiLayers DXF files by drawing entities with <i>TsgDXFExport.Add.....</i> rather than drawing on the canvas.
by Vilo
26 Nov 2007, 15:43
Forum: CAD VCL
Topic: DXFExportVCL : how to export "multi Layers" DXF ?
Replies: 9
Views: 42821

DXFExportVCL : how to export "multi Layers" DXF ?

Hi all, I'm trying to export some data in a "multi layers" DXF file. This is my code : <hr noshade size="1"> DXF := TsgDXFExport.Create; DXF.AutoCADVer := R2000; DXF.Millimetres := true; DXF.CurrentLayer := TsgExpDXFLayer.Create('Sample 1'); DXF.Canvas.Polyline(SomePoints, gmPixels); DXF.CurrentLaye...
by Vilo
19 Nov 2007, 17:06
Forum: CAD VCL
Topic: NumberOfPartsInCircle issue
Replies: 3
Views: 17791

Hello,

Nice demo, but it didn't answer my question at all [?]

My problem is in the tsgDXFImage "iteration" process.
When I leave all options to their default values => OK
When I tweak "NumberOfPartsInCircle" => access violation
by Vilo
02 Nov 2007, 18:18
Forum: CAD VCL
Topic: NumberOfPartsInCircle issue
Replies: 3
Views: 17791

NumberOfPartsInCircle issue

Hi, I'm using CADImportVCL version 6.1, and have an issue with the arc/circle approximation ... The default behavior of TsgDXFConverter is to transform all arcs, circles, and spline into segmented lines. It seams possible to set the final complexity by tweaking : <i>Converter.NumberOfPartsInCircle</...