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
Military Grade Directives
by
DavidL
[
Today
at 03:49:55 am]
Hashing pointers by using...
by
440bx
[
Today
at 03:16:33 am]
Error: Enumeration symbol...
by
440bx
[
Today
at 03:07:40 am]
exception external SIGSEG...
by
dseligo
[
Today
at 02:24:28 am]
Why does the call via fun...
by
Martin_fr
[
Today
at 01:59:35 am]
[SOLVED] Is this a compil...
by
jamie
[
Today
at 01:46:54 am]
Problem installing LazPro...
by
peter.dell
[
Today
at 01:32:53 am]
AI interactions
by
Joanna
[December 13, 2025, 11:47:24 pm]
project - count source li...
by
bobonwhidbey
[December 13, 2025, 10:30:31 pm]
Recomendations for conver...
by
BlueIcaro
[December 13, 2025, 09:49:20 pm]
FPC 3.2.4-rc1 available
by
PeterBB
[December 13, 2025, 08:31:32 pm]
fpsockets error: 10047
by
parcel
[December 13, 2025, 04:03:56 pm]
So many "newbies"
by
Joanna
[December 13, 2025, 02:52:06 pm]
Is it possible to run "mo...
by
Thausand
[December 13, 2025, 02:42:56 pm]
TIBDataSet "Closing"? on ...
by
RedOctober
[December 13, 2025, 02:38:05 pm]
TLazSerial : serial port ...
by
CM630
[December 13, 2025, 02:20:24 pm]
connecting to mariadb
by
alanyoung
[December 13, 2025, 01:27:11 pm]
How to get the standard m...
by
stem
[December 13, 2025, 12:50:55 pm]
Lookup field: error list ...
by
BlueIcaro
[December 13, 2025, 12:00:10 pm]
Anchoring controls with d...
by
jamie
[December 13, 2025, 11:22:45 am]
Recompiled IDE with LCLRe...
by
AlexTP
[December 13, 2025, 05:09:56 am]
Commerce website written ...
by
Joanna
[December 13, 2025, 01:00:28 am]
TaurusTLS 1.0.0.25 beta 2...
by
LeP
[December 12, 2025, 09:21:31 pm]
Single / Double / Float s...
by
tetrastes
[December 12, 2025, 09:10:39 pm]
Publish a LAMW app in F-d...
by
spacepascal
[December 12, 2025, 09:00:41 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: TBRGABitmap Resample(...) (Read 3638 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: 4738
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: 4738
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: 4738
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