C/D line drawing package - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:24:54Z http://stackoverflow.com/feeds/question/816060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/816060/c-d-line-drawing-package 2 C/D line drawing package BCS 2009-05-03T01:32:47Z 2009-05-03T12:59:33Z <p>I find my self in need of a line drawing package. I need to pop a window and draw lines and points. Text would be nice but I can live without it. Most importantly, I need something that is dirt simple to get running. I don't have time to dink around with libs (if I did have time I'd be willing but I'm already way behind as it is).</p> <p>I'd prefer a <a href="http://www.digitalmars.com/d/1.0" rel="nofollow">D language</a> solution (Windows XP, D1.0, Phobos) but I might be able to use anything with C linkage and source. </p> <p>I'd also be able to use an out of process solution as in: generate input file, call program.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/816060/c-d-line-drawing-package/816107#816107 0 Answer by Norman Ramsey for C/D line drawing package Norman Ramsey 2009-05-03T02:11:32Z 2009-05-03T02:11:32Z <p><a href="http://www.wxwidgets.org/" rel="nofollow"><code>wxwidgets</code></a> is among the more featureful and more widely ported GUI toolkits. The toolkit is natively C, but there are bindings for plenty of other languages. I don't know if D is among them.</p> http://stackoverflow.com/questions/816060/c-d-line-drawing-package/816114#816114 2 Answer by Norman Ramsey for C/D line drawing package Norman Ramsey 2009-05-03T02:13:19Z 2009-05-03T02:13:19Z <p>If you want an out-of-process solution, for getting something up and running quickly it's hard to beat <strong>generating PostScript and launching a PostScript viewer</strong>. The great advantage of this trick is that you generate something, you don't like the way it looks, you can edit it by hand until it looks better. Then you go back and edit the generator. So your prototyping cycle is very quick.</p> http://stackoverflow.com/questions/816060/c-d-line-drawing-package/816183#816183 2 Answer by DK for C/D line drawing package DK 2009-05-03T02:51:33Z 2009-05-03T02:51:33Z <p>Another alternative is to use <a href="http://cairographics.org/" rel="nofollow">Cairo</a>. It has a very easy to learn API, is quite powerful, and can write PNG, PS, PDF and SVG out of the box. It also supports drawing to GDI, X and Quartz windows.</p> <p>There is an old <a href="http://dsource.org/projects/bindings/browser/trunk/cairo" rel="nofollow">D binding for cairo</a> (written by some talent-less hack) which might still work. If nothing else, it'll demonstrate how to link and use cairo in D.</p> http://stackoverflow.com/questions/816060/c-d-line-drawing-package/816769#816769 1 Answer by Yuriy Yashkir for C/D line drawing package Yuriy Yashkir 2009-05-03T10:45:09Z 2009-05-03T10:45:09Z <p>You can use SDL to pop a window and SDL_gfxPrimitves.h from SDL_gfx to draw the lines (it can also render basic text and shapes). It doesn't take much time to set up and is portable.</p> <pre><code>#include &lt;SDL/SDL.h&gt; #include &lt;SDL/SDL_gfxPrimitives.h&gt; main() { SDL_Surface *screen = NULL; if ( SDL_Init(SDL_INIT_VIDEO) &lt; 0 ) exit(EXIT_FAILURE); atexit(SDL_Quit); screen = SDL_SetVideoMode(500, 500, 32, SDL_SWSURFACE|SDL_ANYFORMAT); if ( screen == NULL ) exit(EXIT_FAILURE); lineColor(screen, 50, 50, 200, 200, 0xff0000ff); SDL_Flip(screen); sleep(5); } </code></pre> http://stackoverflow.com/questions/816060/c-d-line-drawing-package/817006#817006 2 Answer by FeepingCreature for C/D line drawing package FeepingCreature 2009-05-03T12:59:33Z 2009-05-03T12:59:33Z <p><a href="http://dsource.org/projects/scrapple/browser/trunk/qd/" rel="nofollow">QD</a>.</p> <p>It was <em>made</em> for this.</p> <p>Just import qd, link with SDL.lib (SDL_ttf if you want text), then screen(width, height) to set up, line(x1, y1, x2, y2) to draw a line, pset(x1, y1) to draw a point, print(x1, y1, Bottom|Right, "text") to print text. cls to reset, flip to update the screen. events() to handle events. Append , rgb(r, g, b) to any of the above commands to change the line color, Fill(rgb(r, g, b)) to change the fill color.</p> <p>For examples, see test*.d</p> <p>Good luck!</p>