graphics32

Does somebody know the current status of Graphics32?

The last release of Graphics32 1.8.3 is dated with March 2007. When will there be an official Delphi 2010 compatible version? Is there any public SCM repository of Graphics32? ...

Using ClearType in Graphics32 library (Delphi)

I'm using Graphics32 library in Delphi 2009. Is it possible to render a font using TBitmap32.TextOut method with MS' ClearType technology? I'm aware about GR32's built-in antialiasing (TBitmap32.RenderText) but the overall quality and performance is not gratifying. [ Update ] I've encountered another problem - I'm using function from T...

Inplace conversion of 24bpp bitmap to 32bpp

In Delphi 7, I have to deal with pretty large 24bpp bitmaps (several 100 MB). Since I want to use the Graphcis32 library for further processing, they have to be converted to 32bpp (TBitmap32). The LoadFromFile method of TBitmap32, however, creates a temporary conventional TBitmap to load the original 24bpp bitmap which is then assigned t...

Delphi 6 - Bitmap only updates when owner window requires a repaint when using the Graphics32 library

I have an application that creates 3D motion on a TPaintBox Canvas using native Delphi code. In the old code I rendered the 3D image to a temporary TBitmap on a Timer event. In the TPaintBox OnPaint() event I would BitBlt() the temporary TBitmap the TPaintBox's Canvas. This approach worked fine but the motion was jerky. Because I was...