![]() |
Delphi-Version: 2010
Big endian float value - hot to in Delphi
I'm trying read ASE file, unfortunately it storing color values in BE Float32. I added Float32 = Single. Now I have to make little endian from it. How to do it?
|
AW: Big endian float value - hot to in Delphi
|
Re: Big endian float value - hot to in Delphi
I wrote this, could you confirm is it valid?
Delphi-Quellcode:
I also found this:
function ChangeEndian32f(X: Single): Single;
var B: packed array [0..3] of Byte absolute X; L: packed array [0..3] of Byte; I: Integer; begin for I := 0 to 3 do L[I] := B[3 - I] ; Result := Single(L); end;
Code:
How it working? I don't understand that record?
http://edn.embarcadero.com/article/28964
|
AW: Big endian float value - hot to in Delphi
Zitat:
Zitat:
![]() |
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:36 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz