Fonts: Rotated Fonts
[code lang=”delphi”]//Rotating fonts is a straight forward process, so long as the Windows font // mapper can supply a rotated font based on…
Forms: Create Elliptic Windows
[code lang=”delphi”]Var hR : THandle; begin hR := CreateEllipticRgn(20 ,30 ,300 ,200); SetWindowRgn(Handle,hR,True); [/code] [tags]Delphi, Graphic, Forms[/tags]
Forms: Save Form as Bitmap
Q: Here is what I would like to do: I am trying to create a dinamic wallpaper. My application would start everytime I…
Game coding
> I’m pretty new at delphi and programming in general, but I want to learn > more about game develloping, can someone please…
JPEG Errorcodes etc.
PEG JPG Errorcodes Fehlermeldungen Abfangen Trapping JPEG-Errorcodes: #36 : m:=m+’Output file write error — out of disk space?’; #51 = JERR_NO_QUANT_TABLE: Quantization table…
Streaming JPEG
(Stream Jpeg Jpg LoadFromStream SaveToStream) The same problem is with TIcon, for example. Here is a workaround (not very efficient, but it works)…
Jump&Run Game
I’m happy to hear that, keep on good work… ‘Alex Dominique Louis schrieb in Nachricht < 38137CFD.D5327571@teleline.es >… >Alexander Adam wrote: >> I…
Print TImage
[code lang=”delphi”]procedure TForm1.PrintBitmap(TheImage : TImage); var SourceRect, PrintRect: TRect; Info: PBitmapInfo; InfoSize: Integer; Image: Pointer; ImageSize: LongInt; Bits: HBitmap; DIBWidth, DIBHeight: LongInt; PrintWidth,…
Rainbow Gradient Hintergrund
Wilhelm Steinbuß wrote in message 37724E4C.5A37E97C@fh-trier.de… > Hi, > > I will made a rainborrow with two or more colors. > > A…
Screen capture
How to capture the desktop screen [code lang=”delphi”]procedure TForm1.GetDesktopBitmap; Var DeskHWnd : Hwnd; dc: HDC; ScreenWidth, ScreenHeight: Integer; TheBmp : TBitmap; FName :…