Page 1 of 1
					
				Interesting Graphics Lib
				Posted: Fri May 19, 2006 5:27 am
				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.
 
			
					
				
				Posted: Sat Jun 03, 2006 10:48 pm
				by Andre
				Looks very interesting.  
 
 
But because of the C++ it would be hard to use it with PB, I think...  

 
			
					
				
				Posted: Mon Jun 05, 2006 3:33 pm
				by Yogi Yang
				Andre wrote:Looks very interesting.  
 
 
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.
 
			
					
				One more interesting Compression Lib in pure ASM
				Posted: Tue Jun 06, 2006 11:29 am
				by Yogi Yang
				check this out.
It is in pure ASM and may be of interest....!
http://www.bitsum.com/jcalg1.htm
Thanks
 
			
					
				Re: One more interesting Compression Lib in pure ASM
				Posted: Tue Jun 06, 2006 11:39 am
				by thefool
				
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..
 
			 
			
					
				Re: One more interesting Compression Lib in pure ASM
				Posted: Tue Jun 06, 2006 12:09 pm
				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.  
