gpt4 book ai didi

delphi - 如何清除jpeg图像?

转载 作者:行者123 更新时间:2023-12-03 14:57:33 25 4
gpt4 key购买 nike

如何清除TJPEGImage图像?

JPG.Width := 0 技巧不起作用。另外,我不想创建一个空位图(0x0 像素)并将其分配给 jpeg。

最佳答案

您可能会使用类似的内容(此处使用插入的类来访问 protected 方法):

type
TJPEGImage = class(jpeg.TJPEGImage);

implementation

procedure TForm1.Button1Click(Sender: TObject);
var
JPEGImage: TJPEGImage;
begin
JPEGImage := TJPEGImage.Create;
try
// this should recreate the internal bitmap
JPEGImage.NewBitmap;
// this should recreate the internal image stream
JPEGImage.NewImage;
// here the memory used by the image should be released
finally
JPEGImage.Free;
end;
end;

关于delphi - 如何清除jpeg图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13919935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com