Bitmap/Read an image through a pipe: Difference between revisions

Content added Content deleted
(Go solution)
m (→‎{{header|Go}}: library path updates)
Line 104: Line 104:
}</lang>
}</lang>
=={{header|Go}}==
=={{header|Go}}==
{{works with|Go weekly.2011-06-16}}
{{works with|Go weekly.2011-12-14}}
Using djpeg:
Using djpeg:
<lang go>package main
<lang go>package main
Line 114: Line 114:


import (
import (
"raster"
"exec"
"fmt"
"fmt"
"os/exec"
"raster"
)
)