Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
Windows
(Moderators:
FPK
,
Tomas Hajny
) »
Drawing a Buffer on a Canvas
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
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
ANN: Native X.509, RSA an...
by
AlexTP
[
Today
at 07:39:47 pm]
Inc operator overloading ...
by
ad1mt
[
Today
at 07:17:50 pm]
likely/unlikely — will it...
by
furious programming
[
Today
at 06:58:03 pm]
Fpcupdeluxe
by
fafafooey
[
Today
at 06:22:39 pm]
Stringgrid check only one...
by
Hansvb
[
Today
at 05:21:49 pm]
Telegram bots API Wrapper
by
Renat.Su
[
Today
at 05:18:43 pm]
LAMW 0.8.6.3
by
jmpessoa
[
Today
at 05:10:22 pm]
Writing error when select...
by
Rbart
[
Today
at 04:55:33 pm]
Last page on GridPrinter
by
bobonwhidbey
[
Today
at 04:43:37 pm]
Convertor PNG to TGA
by
BIT
[
Today
at 03:45:34 pm]
Lazarus Release Candidate...
by
Martin_fr
[
Today
at 03:05:56 pm]
BGRABitmap - showcase -
by
circular
[
Today
at 02:27:53 pm]
LAMW - paintshader sample
by
Mongkey
[
Today
at 02:20:44 pm]
Anyone interested in test...
by
ad1mt
[
Today
at 01:37:36 pm]
RayLib 5.0
by
YiannisKam
[
Today
at 12:44:59 pm]
LAMW jcanvas setfont
by
Mongkey
[
Today
at 12:37:37 pm]
Automatize build system
by
TRon
[
Today
at 12:17:04 pm]
eratosthenes sieve homewo...
by
MathMan
[
Today
at 11:51:27 am]
LAMW - spinner set custom...
by
Mongkey
[
Today
at 11:33:11 am]
TButton's missing caption...
by
lagprogramming
[
Today
at 11:09:53 am]
TWSButton descendance
by
lagprogramming
[
Today
at 11:06:40 am]
how to change color of a ...
by
lainz
[
Today
at 10:14:22 am]
Habari STOMP Clients 2023...
by
mjustin
[
Today
at 10:00:25 am]
[SOLVED]fpconnect (from s...
by
arturogr
[
Today
at 09:29:46 am]
Possible bug with range c...
by
Paolo
[
Today
at 09:28:23 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Drawing a Buffer on a Canvas (Read 3604 times)
Key-Real
Full Member
Posts: 169
Drawing a Buffer on a Canvas
«
on:
April 30, 2021, 07:10:39 pm »
How to draw a Buffer on a Canvas?
for y:=0 to height-1 do
for x:=0 to width-1 do begin
gfxCanvas.pixels[x,y]:=getPixel(bitmap,x,y);
end;
is to slow...
ia there a fast way like move( bitmap.data, canvas.data, width*height); <- as Idea
Logged
Handoko
Hero Member
Posts: 5061
My goal: build my own game engine using Lazarus
Re: Drawing a Buffer on a Canvas
«
Reply #1 on:
April 30, 2021, 08:50:40 pm »
Don't use TCanvas, it is slow.
Almost all VGAs even those 20 years old integrated VGAs have some basic support of hardware accelerated OpenGL. Performing graphics using hardware accelerated functions is not only twice or thrice faster than the non-hardware accelerated TCanvas but it can be hundreds times faster or more.
Read more:
https://forum.lazarus.freepascal.org/index.php/topic,51687.msg379944.html#msg379944
But if you don't have time to learn a new framework, use
ScanLine
. It will point you to the address of a horizontal line of pixels, this works much faster.
In the link below there is a "
Get pixel color of an image
" demo showing how to use ScanLine.
https://wiki.freepascal.org/Portal:HowTo_Demos#Graphics
Logged
lucamar
Hero Member
Posts: 4219
Re: Drawing a Buffer on a Canvas
«
Reply #2 on:
April 30, 2021, 10:18:42 pm »
Note also that if your "bitmap" is some kind of TGraphic descendant, TCanvas has quite a lot of ways of drawing it or making it draw itself: CopyRect, Draw, StretchDraw, etc. most of which are usually "fast enough".
There's no need of copying it pixel by pixel.
Logged
Turbo Pascal 3 CP/M - Amstrad PCW 8256 (512 KB !!!)
Lazarus/FPC 2.0.8/3.0.4 & 2.0.12/3.2.0 - 32/64 bits on:
(K|L|X)Ubuntu 12..18, Windows XP, 7, 10 and various DOSes.
wp
Hero Member
Posts: 11482
Re: Drawing a Buffer on a Canvas
«
Reply #3 on:
April 30, 2021, 10:54:03 pm »
Why do we always have to guess so many details?
Assuming that gfxCanvas is a TCanvas and bitmap is a TBitmap or another descendant of TGraphic then this works:
Code: Pascal
[Select]
[+]
[-]
gfxCanas
.
Draw
(
0
,
0
,
bitmap
)
;
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
Windows
(Moderators:
FPK
,
Tomas Hajny
) »
Drawing a Buffer on a Canvas
TinyPortal
© 2005-2018