escobar Posted April 15, 2005 Report Share Posted April 15, 2005 au alimento um LABEL... com dois digitos, dai eu crio um BMP do label fica bom, mas agora preciso transformar este BMP em ICON... será que alguém pode me ajudar ? Quote Link to comment Share on other sites More sharing options...
0 Vivendo&Aprendendo Posted April 15, 2005 Report Share Posted April 15, 2005 Essa converte Bmp para Jpeg, testa ai e ve se converte para ICON, é só mudar alguns comandos... tipo alterar de jpeg para icon.cara tente dessa forma:Function BmpToJpeg(cImage: String):Boolean;varMyJPEG : TJPEGImage;MyBMP : TBitmap;beginResult := False;if fileExists(cImage+'.bmp') thenbeginMyBMP := TBitmap.Create;with MyBMP dobegintryLoadFromFile(cImage+'.bmp');MyJPEG := TJPEGImage.Create;with MyJPEG dobeginAssign(MyBMP);SaveToFile(cImage+'.jpeg');Free;Result := True;end;finallyFree;end;end;end;end;Obs : não testei aindafalouAlexandre Quote Link to comment Share on other sites More sharing options...
0 escobar Posted April 20, 2005 Author Report Share Posted April 20, 2005 Não funciona o comando "Assign(MyBMP)"; não tem no TICONImage só no TJPEGImage Quote Link to comment Share on other sites More sharing options...
Question
escobar
au alimento um LABEL... com dois digitos, dai eu crio um BMP do label fica bom, mas agora preciso transformar este BMP em ICON... será que alguém pode me ajudar ?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.