procedure memset(a: Pointer; b: Integer; c: PtrUInt); cdecl;
begin
system.FillChar(a^,c,b); // swap "b" and "c"
end;
TiffResult := TIFFReadRGBAImageOriented(Tiff, Images[Idx].Width, Images[Idx].Height,
Images[Idx].Bits, Orientation, 0);
if TiffResult = 0 then
RaiseImaging(LastError, []);
// swap Red and Blue, if YCbCr.
if Photometric=PHOTOMETRIC_YCBCR then
SwapChannels(Images[Idx],ChannelRed,ChannelBlue);
Quote from: Galfar on 16 December 2013, 00:37:44
Thanks for this work.
I want to include your LibTiffDelphi FPC modification in Imaging's repository (in Extras\Contrib).
But now I'm little confused what parts of which archive are needed.
Are compiled object files and *.pas files from 4.0.3 archive enough?
Page created in 0.034 seconds with 19 queries.