Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Graphics
»
BGRABitmap and LazPaint
»
[CLOSED] BGRABitmap Free
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Translation does not work...
by
Alienizering
[
Today
at 03:03:19 am]
about sqldb postgresql LO...
by
gucao
[
Today
at 02:56:58 am]
lazarus "i18n" PO Output ...
by
dbannon
[
Today
at 01:59:50 am]
MOVED: lazarus "i18n" PO ...
by
trev
[
Today
at 01:21:49 am]
MOVED: Translation does n...
by
trev
[
Today
at 01:18:57 am]
LAMW - "This app has a bu...
by
Agmcz
[
Today
at 01:09:25 am]
DPI/PPI on Windows
by
Alienizering
[
Today
at 12:59:34 am]
MOVED: Strange behavior T...
by
trev
[
Today
at 12:50:40 am]
MOVED: DPI/PPI on Windows
by
trev
[
Today
at 12:49:03 am]
Strange behavior TFontDia...
by
zoltanleo
[May 17, 2022, 11:58:18 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] BGRABitmap Free (Read 2278 times)
pcurtis
Hero Member
Posts: 935
[CLOSED] BGRABitmap Free
«
on:
January 25, 2022, 05:11:03 pm »
When I do this
Code: Pascal
[Select]
[+]
[-]
procedure
TfrmMain
.
btnOKClick
(
Sender
:
TObject
)
;
var
MyImage
:
TBGRABitmap
;
begin
MyImage
:
=
TBGRABitmap
.
Create
;
MyImage
.
LoadFromFile
(
'1.bmp'
)
;
Image1
.
Picture
.
Bitmap
:
=
MyImage
.
Bitmap
;
MyImage
.
Free
;
end
;
When MyImage is freed the Imagebox shows a black square. With a TBitmap it works fine.
Am I missing something?
«
Last Edit: January 25, 2022, 11:06:17 pm by pcurtis
»
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
Josh
Hero Member
Posts: 930
Re: BGRABitmap Free
«
Reply #1 on:
January 25, 2022, 06:46:12 pm »
hi try to update image1, before you free MyImage
Code: Pascal
[Select]
[+]
[-]
MyImage
:
=
TBGRABitmap
.
Create
(
'1.bmp'
)
;
// MyImage.LoadFromFile('1.bmp');
Image1
.
Picture
.
Bitmap
:
=
MyImage
.
Bitmap
;
Image1
.
Update
;
MyImage
.
Free
;
Logged
Development Installation Lazarus 1.3, FPC 2.7.1,Windows 7/8 32/64, OSX, *nix
Test Environment Lazarus & FPC Trunk on Windows and OSX (Cocoa Mainly on OSX). Testing also Crosscompile windows to OSX..
Any posts made from 2015 will be based on Lazarus Trunk.
pcurtis
Hero Member
Posts: 935
Re: BGRABitmap Free
«
Reply #2 on:
January 25, 2022, 06:59:52 pm »
OK Thanks that works, but with tbitmap I don't need it. Why?
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
winni
Hero Member
Posts: 3045
Re: BGRABitmap Free
«
Reply #3 on:
January 25, 2022, 09:21:37 pm »
Hi!
This is a problem of the widget set.
With linux / gtk2 it is not necessary.
Winni
Logged
pcurtis
Hero Member
Posts: 935
Re: BGRABitmap Free
«
Reply #4 on:
January 25, 2022, 11:05:09 pm »
Enough said.
Built for *nix, pray it works on other OS's.
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
winni
Hero Member
Posts: 3045
Re: [CLOSED] BGRABitmap Free
«
Reply #5 on:
January 25, 2022, 11:26:27 pm »
Hi!
Just do it how it is shown in the tutorials:
https://wiki.freepascal.org/BGRABitmap_tutorial
I pray for nothing.
But that is the correct way to use it:
Code: Pascal
[Select]
[+]
[-]
MyImage
.
Draw
(
Image1
.
Canvas
,
0
,
0
)
;
MyImage
.
free
;
Winni
Logged
pcurtis
Hero Member
Posts: 935
Re: [CLOSED] BGRABitmap Free
«
Reply #6 on:
January 25, 2022, 11:56:59 pm »
So how do you use center, stretch, proportional properties of TImage?
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
winni
Hero Member
Posts: 3045
Re: [CLOSED] BGRABitmap Free
«
Reply #7 on:
January 26, 2022, 12:02:13 am »
Hi!
If your google is broken then use the "search" option of this forum.
Winni
Logged
pcurtis
Hero Member
Posts: 935
Re: [CLOSED] BGRABitmap Free
«
Reply #8 on:
January 26, 2022, 12:17:34 am »
My Google works fine.
Why reinvent the wheel?
Code: Pascal
[Select]
[+]
[-]
Image1
.
Picture
.
Bitmap
:
=
MyImage
.
Bitmap
;
Image1
.
Update
;
Works fine.
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
Josh
Hero Member
Posts: 930
Re: [CLOSED] BGRABitmap Free
«
Reply #9 on:
January 26, 2022, 05:54:12 pm »
you could use an intermeddiate bitmap to hold the image; should work on all os's. no update should be needed.
Code: Pascal
[Select]
[+]
[-]
var
bmp
:
tbitmap
;
MyImage
:
TBGRABitmap
;
begin
MyImage
:
=
TBGRABitmap
.
Create
;
bmp
:
=
tbitmap
.
Create
;
myimage
.
LoadFromFile
(
'1.bmp'
)
;
bmp
.
SetSize
(
myimage
.
Width
,
myimage
.
Height
)
;
bmp
.
Canvas
.
Draw
(
0
,
0
,
myimage
.
Bitmap
)
;
image1
.
Picture
.
Bitmap
:
=
bmp
;
MyImage
.
Free
;
bmp
.
free
;
end
;
Logged
Development Installation Lazarus 1.3, FPC 2.7.1,Windows 7/8 32/64, OSX, *nix
Test Environment Lazarus & FPC Trunk on Windows and OSX (Cocoa Mainly on OSX). Testing also Crosscompile windows to OSX..
Any posts made from 2015 will be based on Lazarus Trunk.
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Graphics
»
BGRABitmap and LazPaint
»
[CLOSED] BGRABitmap Free
TinyPortal
© 2005-2018