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
docking IDE
by
dsiders
[
Today
at 10:30:42 pm]
Error when opening a proj...
by
Tomu
[
Today
at 09:11:54 pm]
Is this safe, changing fr...
by
mas steindorff
[
Today
at 08:46:31 pm]
TPeriodicTable
by
wp
[
Today
at 08:00:38 pm]
Windows 2026_7 update and...
by
Martin_fr
[
Today
at 07:46:38 pm]
try/except error
by
toby
[
Today
at 06:55:42 pm]
KOL4 Beta available.
by
schuler
[
Today
at 06:34:34 pm]
Putting a new file on a w...
by
J-G
[
Today
at 06:24:49 pm]
Engineering Software from...
by
Thaddy
[
Today
at 05:54:50 pm]
How to connect to MariaDb...
by
Thaddy
[
Today
at 05:51:17 pm]
GTK3 is now the default w...
by
zeljko
[
Today
at 03:40:04 pm]
Computers sure have come ...
by
Zvoni
[
Today
at 03:36:38 pm]
KOL x64
by
Thaddy
[
Today
at 02:06:48 pm]
Install new .deb over exi...
by
dbannon
[
Today
at 01:45:27 pm]
FastCGI vs. CGI
by
egsuh
[
Today
at 12:45:05 pm]
Many recent books on Laza...
by
Thaddy
[
Today
at 08:47:32 am]
Difference between @ and ...
by
DavidTh30
[
Today
at 07:58:00 am]
Isn’t this funny?
by
Joanna
[
Today
at 12:04:29 am]
Slow app start on M5 MacB...
by
Thaddy
[July 15, 2026, 03:36:57 pm]
Solpage
by
munair
[July 15, 2026, 01:47:30 pm]
Need help with fphttpserv...
by
Thaddy
[July 15, 2026, 12:58:30 pm]
Freepascal
by
Thaddy
[July 15, 2026, 12:39:23 pm]
Lazarus interface to Rexx...
by
Thaddy
[July 15, 2026, 12:38:10 pm]
Parsing error?
by
Thaddy
[July 15, 2026, 12:02:02 pm]
is there PDS reader/expor...
by
cdbc
[July 15, 2026, 10:55:30 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: TBRGABitmap Resample(...) (Read 3795 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: 4743
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: 4743
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: 4743
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