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
Black background on objec...
by
Thaddy
[
Today
at 06:12:39 pm]
Question about RPI_HAL CP...
by
Thaddy
[
Today
at 04:52:59 pm]
Debugging libraries
by
Thaddy
[
Today
at 04:32:44 pm]
Feature announcement: Fun...
by
Thaddy
[
Today
at 03:12:27 pm]
RP2040 with Picoprobe and...
by
MarkMLl
[
Today
at 01:03:07 pm]
Problem saving new projec...
by
wp
[
Today
at 12:50:46 pm]
resize Form when enable o...
by
Thaddy
[
Today
at 10:15:03 am]
Daemon application: -r/--...
by
Nimral
[
Today
at 09:05:10 am]
Simple animation with TTi...
by
Handoko
[
Today
at 05:25:48 am]
how do I use TCharacter (...
by
Weiss
[
Today
at 02:45:37 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] BGRABitmap Free (Read 2299 times)
pcurtis
Hero Member
Posts: 939
[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: 932
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: 939
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: 3057
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: 939
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: 3057
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: 939
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: 3057
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: 939
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: 932
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