Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Graphics
(Moderator:
Ask
) »
Problems with RLE-8 encoded Bitmaps
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
How to determine the unkn...
by
Hartmut
[
Today
at 01:04:47 pm]
Strange Error in My Code ...
by
TYDQ
[
Today
at 01:03:58 pm]
; after then
by
Martin_fr
[
Today
at 12:59:18 pm]
Status of FPC 3.4.0 or FP...
by
robert rozee
[
Today
at 12:50:54 pm]
Lazarus recompiles some o...
by
Martin_fr
[
Today
at 12:44:41 pm]
Rolling releases Lazarus[...
by
Bi0T1N
[
Today
at 12:33:55 pm]
[SOLVED] TaChart on MAC: ...
by
Martin_fr
[
Today
at 12:25:45 pm]
[ANN] fpGUI Toolkit v2.0....
by
Seenkao
[
Today
at 12:13:47 pm]
Fpcupdeluxe
by
tk
[
Today
at 12:08:34 pm]
ThorVG - test (lightweigh...
by
Boleeman
[
Today
at 11:28:52 am]
External SIGSEV (Database...
by
Zvoni
[
Today
at 08:26:34 am]
Debian removes FPC/Lazaru...
by
dbannon
[
Today
at 01:08:23 am]
Fast Canvas Library V1.05...
by
backprop
[February 10, 2026, 11:38:53 pm]
fpGUI vs MSEide + MSEgui?
by
Graeme
[February 10, 2026, 10:23:25 pm]
Is FPGUI still active?
by
Graeme
[February 10, 2026, 10:20:16 pm]
TRichMemo EM_FORMATRANGE ...
by
rvk
[February 10, 2026, 09:31:40 pm]
TLazSerial : serial port ...
by
CM630
[February 10, 2026, 09:14:56 pm]
it2play - IT/S3M module r...
by
Lulu
[February 10, 2026, 09:11:05 pm]
The Future of FPC
by
Ten_Mile_Hike
[February 10, 2026, 07:38:23 pm]
Fixing Lazarus 4.4 IDE la...
by
Curt Carpenter
[February 10, 2026, 06:47:29 pm]
Z80 ZX Spectrum and Syste...
by
Cascade
[February 10, 2026, 03:30:13 pm]
Where is Lazarus config
by
Martin_fr
[February 10, 2026, 12:10:36 pm]
Anchordocking - window pr...
by
Zvoni
[February 10, 2026, 10:41:04 am]
Anchordocking - Window T...
by
janhsh
[February 10, 2026, 09:33:09 am]
Free Pascal for a small e...
by
dbannon
[February 10, 2026, 09:20:55 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Problems with RLE-8 encoded Bitmaps (Read 9904 times)
Antrepolit
New member
Posts: 7
Problems with RLE-8 encoded Bitmaps
«
on:
September 29, 2006, 07:11:16 am »
Good morning,
it's me again.
Yesterday I got a problem until loading "some" bitmaps.
Lazarus showed me the message "RLE-8 encoded bitmaps are not supported".
Does anyone know if the RLE-8 compression be supported in future?
It would make me very happy
, because I now have to convert
200 RLE-8 bitmaps :cry:
Antrepolit
Logged
theo
Global Moderator
Hero Member
Posts: 1933
RE: Problems with RLE-8 encoded Bitmaps
«
Reply #1 on:
September 29, 2006, 10:15:22 am »
I don't know if Lazarus can't but FPImage should be able to read them. See fpreadbmp.pp.
Logged
Marc
Administrator
Hero Member
Posts: 2673
RE: Problems with RLE-8 encoded Bitmaps
«
Reply #2 on:
September 29, 2006, 11:33:58 am »
AFAIK laz is using fpimage
Logged
//--
{$I stdsig.inc}
//-I still can't read someones mind
//-Bugs reported here will be forgotten. Use the
bug tracker
Antrepolit
New member
Posts: 7
Problems with RLE-8 encoded Bitmaps
«
Reply #3 on:
September 29, 2006, 02:19:28 pm »
Lazarus can't decode it.
Do you think, I should convert all bitmaps? The problem on it is, that
these bitmaps are in a Win32 - resource file. It means I have to export them, convert them and at least to to create a new Win32 - resource file.
Oh...
Logged
Vincent Snijders
Administrator
Hero Member
Posts: 2661
Problems with RLE-8 encoded Bitmaps
«
Reply #4 on:
September 29, 2006, 03:14:26 pm »
Marc, I think the problem is in TLazReaderBMP.InternalReadBody in the IntfGraphics unit.
I don't know what it should do to support RLE encoded bitmaps.
Logged
felipemdc
Administrator
Hero Member
Posts: 3538
Problems with RLE-8 encoded Bitmaps
«
Reply #5 on:
September 29, 2006, 03:24:01 pm »
Ummm, maybe you could create a script that call ImageMagick to automate this task.
www.imagemagick.org/
Or a pascal software that calls ImageMagick libraries.
The resource file shouldn't be hard to recreate if you make a .rc file for him, and compile that RC file using Windres GNU Tool that comes with lazarus
Logged
theo
Global Moderator
Hero Member
Posts: 1933
Problems with RLE-8 encoded Bitmaps
«
Reply #6 on:
September 29, 2006, 07:28:14 pm »
Umm, but I'm pretty sure fpreadbmp can read them.
It's stated: - Support for RLE4 and RLE8 decoding
So why not read them the FPImage way?
Afaik you can transform these to a Lazarus displayable format.
If not, you could at least save them uncompressed to stream/file and load from there instead of using ImageMagick.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
Graphics
(Moderator:
Ask
) »
Problems with RLE-8 encoded Bitmaps
TinyPortal
© 2005-2018