B
bugcool
Unregistered / Unconfirmed
GUEST, unregistred user!
function Jpg2Bmp(Jpg: TJpegImage): TBitmap
begin
Result := nil
if Assigned(Jpg)
then begin
Result := TBitmap.Create
Jpg.DIBNeeded
{Key method...}
Result.Assign(Jpg)
{Its all folks...}
end
end
这是一个JPG转BMP的函数,请问再外部使用了这个函数后,怎么释放掉RESULT这个BMP对象?
begin
Result := nil
if Assigned(Jpg)
then begin
Result := TBitmap.Create
Jpg.DIBNeeded
{Key method...}
Result.Assign(Jpg)
{Its all folks...}
end
end
这是一个JPG转BMP的函数,请问再外部使用了这个函数后,怎么释放掉RESULT这个BMP对象?