Start the Inkscape (0.92)
Select [File > Open] menu
Choose a JPEG image file and click.
On the pop-up window, choose the following values:
Image Import Type: Embed
Image DPI: From file
Image Rendering Mode: None
After the image is loaded, choose [Path > Trace Bitmap] menu
On the pop-up window, set Threshold to 0.5. Then press OK.
It will create a black trace on top of the image.
Select the black trace and choose [File > Save as] menu.
Type the file name, choose OpenSCAD DXF Output in the drop-down list.
Copy the dxf file to an OpenSCAD’s working directory.
Create a SCAD file and use linear_extrude() to load the DXF file.
linear_extrude(height = 3, center = true, convexity = 10)
import(file = "cloud3-logo-test.dxf");