Hi! Is it possible to detect whether a .PNG file contains any transparent areas? The PNG file is always 32 bit with alpha channel - but may contain transparent areas or not. The pseudo code for this would be:
function PNGFileContainsTransparency(APNGFile: string): Boolean;
begin
Result := False;
if PNGFileIs32BitAlpha(APNGFile) then
Result := PNGFileContainsTransparentArea(APNGFile);
end;