I have a web application that allows users to upload and download image files by pressing buttons on a web page. Users of this page report that when the file has a Unicode pathname, IE 7 and 8 Unab
Tag: BMP
Delphi – Convert BMP to PNG failed
I have the following simple code to convert a clipboard image to bmp and then to png:
if Clipboard.HasFormat (CF_PICTURE) then
begin
bitmap := TBitmap.Create;
png := TPNGImage.Create;
try