Bitmap/PPM conversion through a pipe: Difference between revisions

→‎{{header|Go}}: library path updates
m ({{omit from|ZX Spectrum Basic}})
(→‎{{header|Go}}: library path updates)
Line 47:
In order to make it working, you must link it with the raster image functions given by the codes [[Bresenham's_line_algorithm#C|here]] and [[Basic_bitmap_storage#C|here]]
=={{header|Go}}==
{{works with|Go weekly.2011-0612-1614}} (Go 1 should be close)
Using cjpeg:
<lang go>package main
Line 56:
 
import (
"raster"
"exec"
"fmt"
"math/rand"
"os/exec"
"raster"
)
 
1,707

edits