Skip to content

Instantly share code, notes, and snippets.

@yratof
Last active July 14, 2018 22:28
Show Gist options
  • Save yratof/d826ac19647f002bf8ce2be9c724a917 to your computer and use it in GitHub Desktop.
Save yratof/d826ac19647f002bf8ce2be9c724a917 to your computer and use it in GitHub Desktop.
Long winded process for Cinema4D to Plotter

Convert your image to .bmp, then run it through autotrace

autotrace --centerline --error-threshold 0.5 iceland.bmp --output-file iceland.eps

Convert EPS to HPGL, then Optimise it

pstoedit -f plot-hpgl -pagesize a4 iceland.eps iceland.hpgl && 
hpgl-distiller -i iceland.hpgl -o iceland_optimal.hpgl

Then plot!

plotter.write_file('iceland_optimal.hpgl')

Cinema4D to HP DXY Plotter.

  1. Create art with Sketch and toon in C4D

  2. Export as Illustrator (.ai) file

  3. Open Illustrator, adjust and resave as EPS

  4. Install Post script to edit: brew install pstoedit

  5. Install http://pldaniels.com/hpgl-distiller/

  6. Convert the EPS and Optimise:

     pstoedit -f plot-hpgl imagefile.eps fulloutput.hpgl
    
     hpgl-distiller -i fulloutput.hpgl -o distilled.hpgl
    
  7. Run final file through Chiplotle: http://sites.music.columbia.edu/cmc/chiplotle/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment