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
OpenDocument('Filename') ...
by
J-G
[
Today
at 05:23:26 pm]
Lazarus interface to Rexx...
by
marcov
[
Today
at 05:10:10 pm]
Lazarus Bugfix Release 4....
by
n7800
[
Today
at 04:56:57 pm]
WASM import error
by
Fibonacci
[
Today
at 04:53:35 pm]
Discipline your AI coding...
by
Weiss
[
Today
at 04:37:42 pm]
Lazarus Main not building...
by
dsiders
[
Today
at 03:01:07 pm]
Hello. I'm new to this co...
by
zeljko
[
Today
at 02:17:38 pm]
TCollection wiki entry
by
Thaddy
[
Today
at 01:24:21 pm]
weird error message
by
cdbc
[
Today
at 12:23:13 pm]
Freepascal
by
LeP
[
Today
at 09:40:33 am]
TTL Record Count, i.e. a ...
by
Zvoni
[
Today
at 09:10:08 am]
Printing on HP Smart Tank
by
Thaddy
[
Today
at 07:10:37 am]
P.I.S.S. a PlugIn-framewo...
by
cdbc
[
Today
at 06:38:27 am]
MVP made easier.
by
cdbc
[
Today
at 06:18:24 am]
I have made some progress...
by
onionmixer
[
Today
at 02:57:55 am]
Lazarus 4.6 may erase you...
by
Martin_fr
[July 12, 2026, 06:35:29 pm]
Best name for procedure
by
LemonParty
[July 12, 2026, 05:23:02 pm]
Fixed an RV32ec compiler ...
by
MattBradford
[July 12, 2026, 05:11:16 pm]
Many recent books on Laza...
by
Tomu
[July 12, 2026, 05:02:44 pm]
International Pascal Cong...
by
zeljko
[July 12, 2026, 04:08:53 pm]
equivalent to C/C++ "offs...
by
jamie
[July 12, 2026, 02:43:16 pm]
val return code
by
ALLIGATOR
[July 12, 2026, 01:40:21 pm]
Help needed on how to do ...
by
cdbc
[July 12, 2026, 12:15:15 pm]
PascalRAL the fastest, mo...
by
Mobius1
[July 12, 2026, 11:24:00 am]
TDateTimePicker - Make th...
by
AlexanderT
[July 12, 2026, 09:57:05 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: TBRGABitmap Resample(...) (Read 3794 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