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
MOVED: was the book "laza...
by
trev
[
Today
at 02:31:19 pm]
Problems with Crt and Dos...
by
pleumann
[
Today
at 01:51:02 pm]
Feature announcement: Fun...
by
Thaddy
[
Today
at 01:20:11 pm]
RP2040 with Picoprobe and...
by
MarkMLl
[
Today
at 01:08:00 pm]
Problem saving new projec...
by
rvk
[
Today
at 01:00:40 pm]
TListView and OwnerData
by
dbannon
[
Today
at 12:42:01 pm]
RISCV32 Embedded -> Addin...
by
kupferstecher
[
Today
at 12:34:15 pm]
Illegal type conversion s...
by
Fred vS
[
Today
at 12:31:16 pm]
How to determine Unicode ...
by
Manlio
[
Today
at 12:13:43 pm]
Custom Control causes QTr...
by
alanphys
[
Today
at 11:37:57 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] BGRABitmap Free (Read 2296 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