Results 1 to 1 of 1

Thread: easiest graphics with c++

  1. #1

    easiest graphics with c++

    this is called "WINBGIM Library"
    just copy the attached files ( graphics.h, libbgi.a) to include, Lib folders of your MingW and from dos prompt write something like this:
    g++ shapes.cpp -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 -o shapes.exe

    always use -lbgi -lgdi32 -lcomdlg32 -luuid -loleaut32 -lole32 in this order.
    a complete list of 106 functions (with examples) here:
    http://www.cs.colorado.edu/~main/cs1...bgi/index.html
    figures.JPG


    some history:
    in the old old days there was Borland Graphics Interface (BGI), to be used by turbo c/c++ products. and after many years someone make an emulator for that graphics driver called BGI for Windows (WinBGI) you can download it from here:
    http://www.garret.ru/lang.html
    the author make his driver shareware.
    in 2004 someone in colorado univ make another BGI emulator he depends on the previous WinBGI, but added more functions and modernized it more, and make it freeware, it is called:
    "The WINBGIM Library -- Version 6.0 -- August 9, 2004
    Borland BGI Graphics and Mouse For Windows Applications
    it is here:
    http://www.cs.colorado.edu/~main/cs1...c/bgi/bgi.html
    the links to graphics.h and libbgi.a are broken and i have salvaged it from web.archive.org, and it is part of a computer science tools (used for edu ) called cs1300.zip (58 MB) available for free download from http://www.cs.colorado.edu/~main/cs1...00/README.html
    the functions documentation here:
    http://www.cs.colorado.edu/~main/cs1...bgi/index.html
    Attached Files Attached Files
    Last edited by zak; 06-07-2011 at 13:02.

Similar Threads

  1. Replies: 8
    Last Post: 14-01-2010, 04:56
  2. 3D graphics for fun !
    By Petr Schreiber in forum TBGL Scripts and Projects
    Replies: 10
    Last Post: 14-11-2005, 20:37

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •