Interesting Graphics Lib

Everything else that doesn't fall into one of the other PB categories.
Yogi Yang
Enthusiast
Enthusiast
Posts: 107
Joined: Sun Dec 11, 2005 2:19 pm

Interesting Graphics Lib

Post by Yogi Yang »

I found an interesting Graphic Lib called Anti-Grain Geometry Library. It is in C++ and has got a long list of features. It is platform independent. It bost support for Bitmap as well as Vector Graphics as per SVG specs.
Check out :
http://www.antigrain.com/ http://www. ... ndex.html

It is an open source lib.
User avatar
Andre
PureBasic Team
PureBasic Team
Posts: 2148
Joined: Fri Apr 25, 2003 6:14 pm
Location: Germany (Saxony, Deutscheinsiedel)
Contact:

Post by Andre »

Looks very interesting. :D

But because of the C++ it would be hard to use it with PB, I think... :?
Bye,
...André
(PureBasicTeam::Docs & Support - PureArea.net | Order:: PureBasic | PureVisionXP)
Yogi Yang
Enthusiast
Enthusiast
Posts: 107
Joined: Sun Dec 11, 2005 2:19 pm

Post by Yogi Yang »

Andre wrote:Looks very interesting. :D

But because of the C++ it would be hard to use it with PB, I think... :?
I am new to PureBASIC but I think PureBASIC can import C/C++ .lib files directly and conver them to it's native format.

Can't we just import the libs and use them?

One more thought. Can't we just compile the C/C++ code in its own compiler and then collect all the generated OBJ files and convert them to PureBASIC Lib?

Just my thoughts.
Last edited by Yogi Yang on Tue Jun 06, 2006 11:57 am, edited 1 time in total.
Yogi Yang
Enthusiast
Enthusiast
Posts: 107
Joined: Sun Dec 11, 2005 2:19 pm

One more interesting Compression Lib in pure ASM

Post by Yogi Yang »

check this out.

It is in pure ASM and may be of interest....!

http://www.bitsum.com/jcalg1.htm

Thanks
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Re: One more interesting Compression Lib in pure ASM

Post by thefool »

Yogi Yang wrote:check this out.

It is in pure ASM and may be of interest....!

http://www.bitsum.com/jcalg1.htm

Thanks
The packer library provides an efficient set of commands to pack and unpack data (compress/decompress). The pack/unpack routines are based on the excellent JCalG1 algorithm and are integrated to PureBasic (no external DLL needed).
so PB already uses it :)
and i guess Fred uses the ASM code..
Yogi Yang
Enthusiast
Enthusiast
Posts: 107
Joined: Sun Dec 11, 2005 2:19 pm

Re: One more interesting Compression Lib in pure ASM

Post by Yogi Yang »

thefool wrote:
The packer library provides an efficient set of commands to pack and unpack data (compress/decompress). The pack/unpack routines are based on the excellent JCalG1 algorithm and are integrated to PureBasic (no external DLL needed).
so PB already uses it :)
and i guess Fred uses the ASM code..
Thanlks I did not know that. :D
Post Reply