Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
0answers
993 views

Using ClearType in Graphics32 library (Delphi) [closed]

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 ...
5
votes
4answers
828 views

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?
2
votes
1answer
153 views

Delphi, GR32 + PngObject: converting to Bitmap32 doesn't work as expected

I'm using GR32 for drawing multiple semi-transparent PNG images. So far I've been using the following method: png:= TPNGObject.Create; png.LoadFromFile(...); PaintBox321.Buffer.Canvas.Draw(120, ...
1
vote
1answer
100 views

Creating a Clipping Mask using Graphics32

I'm using Graphics32 for image processing. Looking at its capabilities, it strikes me that I've yet to see a proper implementation of a clipping mask. I do see the term "clipping" pop up here and ...
1
vote
2answers
372 views

how to retrive exact text width for RenderText in Graphics32

I think my question is clear enough, but I explain more. Simply, when we are using AntiAlias on RenderText procedure, the value gotten within TextWidth function is not correct. What can I do to get ...
1
vote
1answer
629 views

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 ...
0
votes
1answer
375 views

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 ...