Hello,
In order to make special effects on bitmaps (bluebox, changing the brightness etc.)
I programmed an abstract class which I called TFilter.
TFilter has follwing main attributes:
SourceBitmap //The bitmap which should be modified.
Bitmap //The target bitmap. This...
If you work with Bitmaps you should use the 'Scanline- Method
' of the TBimap- class because its much faster than TCanvas.Pixels.
The following example is taken from the "Delphi 4 Kochbuch" (Delphi 4 Cookbook).
I don't know if there exists an English translation.
In Germany we the "Delphi 7...
Hello,
In my Programm I get an EAcces-Violation Exception.
It occurs when I use the 'Scanline' method of a TBitmap - Object which I named FBitmap.
If I verify FBitmap with the debugger I get the message:
"Auf Variable 'Self' kann wegen Optimierung nicht zugegriffen werden"
"I can't...
I have found the error,
I didn't know that tehe string Filename in TPictureStreamItem has to be limited (string[255] for example).
Thank you all who read this and perhaps thought about.
I get the compiler-error :
TPicturStreamItem needs finalization not - allowed in filetype.
What does this mean ?
It happens when I try to declare a file of .. type see code below:
procedure TPictureFilemanager.SaveToFile(FileName:string);
var
Entry : TPictureStreamItem;
PEntry ...
I write a class named TPictureSet which administrates a list of TBitmap-objects.(Fitem)..
But at adding a TBitmap-Object to the list this problem occur :
I can’t store the TBitmap-Object‘s data into the new list item.
function TPictureSet.add(Picture : TBitmap):boolean;
begin
New(PItem)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.