Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Graphics
»
BGRABitmap and LazPaint
»
TBRGABitmap Resample(...)
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
The compiler fails to war...
by
dseligo
[
Today
at 01:41:21 am]
Embedded qss stylesheets ...
by
big_M
[
Today
at 12:52:34 am]
Theoretical question. Laz...
by
jamie
[
Today
at 12:12:09 am]
Mapping Images Like Odome...
by
SandyG
[January 15, 2026, 11:57:50 pm]
StrToDateTime problems
by
Aruna
[January 15, 2026, 11:56:02 pm]
Newly revised TlistBox in...
by
jamie
[January 15, 2026, 11:17:12 pm]
unit init, finalize and i...
by
PascalDragon
[January 15, 2026, 09:46:49 pm]
Why does FPC behave this ...
by
PascalDragon
[January 15, 2026, 09:26:24 pm]
How to forward a Class in...
by
PascalDragon
[January 15, 2026, 09:21:47 pm]
Pyramid solitaire, re-wri...
by
TBMan
[January 15, 2026, 09:21:07 pm]
Tzipper giving error on M...
by
Josh
[January 15, 2026, 08:46:02 pm]
Copy and Past Code
by
n7800
[January 15, 2026, 07:47:43 pm]
AI: Agentic Design Patter...
by
avra
[January 15, 2026, 06:36:29 pm]
[SOLVED] Transparent back...
by
ginoo
[January 15, 2026, 04:08:44 pm]
CudaText editor (written ...
by
szlbz
[January 15, 2026, 02:16:25 pm]
PasLLM - LLM Inference En...
by
matthius
[January 15, 2026, 01:41:45 pm]
Stacked bars not drawn pr...
by
apeoperaio
[January 15, 2026, 12:57:01 pm]
New book on Object Pascal
by
matthius
[January 15, 2026, 12:55:36 pm]
[SOLVED] Assembler error ...
by
dbannon
[January 15, 2026, 12:55:16 pm]
four squares (inc)
by
speter
[January 15, 2026, 11:25:05 am]
Regarding the issue of de...
by
Martin_fr
[January 15, 2026, 10:20:35 am]
Dice (raylib + kraft phys...
by
fcu
[January 15, 2026, 09:01:24 am]
Lazarus seems to be makin...
by
Boleeman
[January 15, 2026, 07:54:25 am]
[SOLVED] Lazreport PDF
by
Petrus Vorster
[January 15, 2026, 07:42:59 am]
Maze Makers: Modified Cyl...
by
Boleeman
[January 15, 2026, 07:20:10 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: TBRGABitmap Resample(...) (Read 3666 times)
PaulANormanNZ
Full Member
Posts: 117
TBRGABitmap Resample(...)
«
on:
July 01, 2018, 09:30:56 am »
Hi I have been going around in circles trying to Resample a TBGRABitmap
I am sure that I am missing something very obvious...
Code: Pascal
[Select]
[+]
[-]
// Always works as a test...
// Image_Btabb_thumbnail.Picture.bitmap.Assign(global_main_image.Bitmap);
// Both top two creation methods are definitely loading a displayable image...
// thumbNail:= tbgrabitmap.Create(global_main_image.Bitmap);
thumbNail
:
=
tbgrabitmap
.
Create
(
global_FileName_plain
)
;
// thumbNail:= tbgrabitmap.Create;
try
// This works...
// Image_Btabb_thumbnail.Picture.bitmap.Assign(thumbNail.Bitmap);
// showmessage('ok');
thumbNail
.
ResampleFilter
:
=
rfBestQuality
;
// This comes out blank
BGRAReplace
(
thumbNail
,
thumbNail
.
Resample
(
newWidth
,
newHeight
,
rmFineResample
)
)
;
// This does not imrpove anything
// thumbNail.InvalidateBitmap;
// showmessage('ok');
{
// this never works ...
global_main_image.ResampleFilter:= rfBestQuality;
thumbNail := global_main_image.Resample(
newWidth, newHeight,
rmFineResample)
as TBGRABitmap;
}
Application
.
ProcessMessages
;
//
// // this always comes out blank after re-sample...
Image_Btabb_thumbnail
.
Picture
.
bitmap
.
Assign
(
thumbNail
.
Bitmap
)
;
// And so, of course this only produces "data:image" and nothing else...
thumbString
:
=
thumbNail
.
Canvas2D
.
toDataURL
(
'image/jpeg'
)
;
Any help appreciates please,
Paul
Logged
lainz
Hero Member
Posts: 4740
Web, Desktop & Android developer
Re: TBRGABitmap Resample(...)
«
Reply #1 on:
July 01, 2018, 04:30:16 pm »
If I remember correctly is like this:
Code: Pascal
[Select]
[+]
[-]
BGRAReplace
(
Bitmap
,
Bitmap
.
Resample
(
...
)
as TBGRABitmap
)
Logged
https://lainz.github.io/
PaulANormanNZ
Full Member
Posts: 117
Re: TBRGABitmap Resample(...)
«
Reply #2 on:
July 02, 2018, 02:20:31 am »
Thanks Lainz,
I was looking at ...
http://wiki.freepascal.org/BGRABitmap_tutorial_5
Which shows it in this form...
Code: Pascal
[Select]
[+]
[-]
//load and scale texture
tex
:
=
TBGRABitmap
.
Create
(
'texture.png'
)
;
BGRAReplace
(
tex
,
tex
.
Resample
(
128
,
80
)
)
;
which doesn't show the cast..
Code: Pascal
[Select]
[+]
[-]
BGRAReplace
(
Bitmap
,
Bitmap
.
Resample
(
...
)
as TBGRABitmap
)
I really appreciate the tutorials, they cover some amazing capabilities - is there though some straight forward primers anywhere which go over many of the more mundane use case scenarios, like these sorts of things, just processing images for web, storage in base64 etc...
Often people say look at the LazPaint code, but it is not a straight forward "design time" interface the way it is done.
Thanks,
paul
Logged
lainz
Hero Member
Posts: 4740
Web, Desktop & Android developer
Re: TBRGABitmap Resample(...)
«
Reply #3 on:
July 02, 2018, 02:26:24 am »
Yes, I was writting it from my memories only =)
You can attach a small program that reproduces the problem? Usually when you do that, you can find the problem, and if not, we can try to help.
Logged
https://lainz.github.io/
lainz
Hero Member
Posts: 4740
Web, Desktop & Android developer
Re: TBRGABitmap Resample(...)
«
Reply #4 on:
July 02, 2018, 02:52:10 am »
This works for me:
Code: Pascal
[Select]
[+]
[-]
unit
Unit1
;
{$mode objfpc}{$H+}
interface
uses
Classes
,
SysUtils
,
FileUtil
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
ExtCtrls
,
BGRABitmap
,
BGRABitmapTypes
;
type
{ TForm1 }
TForm1
=
class
(
TForm
)
Image1
:
TImage
;
procedure
FormCreate
(
Sender
:
TObject
)
;
procedure
FormDestroy
(
Sender
:
TObject
)
;
private
bitmap
:
TBGRABitmap
;
public
end
;
var
Form1
:
TForm1
;
implementation
{$R *.lfm}
{ TForm1 }
procedure
TForm1
.
FormCreate
(
Sender
:
TObject
)
;
begin
bitmap
:
=
TBGRABitmap
.
Create
(
'image.png'
)
;
bitmap
.
ResampleFilter
:
=
rfBestQuality
;
BGRAReplace
(
bitmap
,
bitmap
.
Resample
(
Image1
.
Width
,
Image1
.
Height
)
)
;
Image1
.
Picture
.
Bitmap
.
Assign
(
bitmap
.
Bitmap
)
;
ShowMessage
(
bitmap
.
Canvas2D
.
toDataURL
(
'image/jpeg'
)
)
;
end
;
procedure
TForm1
.
FormDestroy
(
Sender
:
TObject
)
;
begin
bitmap
.
Free
;
end
;
end
.
Logged
https://lainz.github.io/
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Graphics
»
BGRABitmap and LazPaint
»
TBRGABitmap Resample(...)
TinyPortal
© 2005-2018