請問有可以置放GIF圖片的元件嗎? 我用的是Delphi 2005 |
尚未結案
|
LiangJimmy
一般會員 發表:4 回覆:8 積分:2 註冊:2004-10-25 發送簡訊給我 |
|
wyndog
資深會員 發表:7 回覆:362 積分:348 註冊:2004-10-12 發送簡訊給我 |
|
LiangJimmy
一般會員 發表:4 回覆:8 積分:2 註冊:2004-10-25 發送簡訊給我 |
|
wyndog
資深會員 發表:7 回覆:362 積分:348 註冊:2004-10-12 發送簡訊給我 |
啊,不好意思,因為 Delphi 7 的 TImage 可以直接放 GIF
所以沒有想到,Delphi 2005 不行....|| 這時候,你可能得靠第三方控件了
你可以考慮看看 GraphicEx
先到這裡下載 http://www.lischke-online.de/GraphicEx.php 1. 安裝 step 01 先把 GraphicEx.zip 解壓縮到某個目錄下
然後,將該目錄加到 Delphi2005 Library Path 裡
[Tools] -> [Options] -> [Environment Options] -> [Delphi Options]
-> [Library - Win32] -> [Library Path:] step 02
在該目錄下找到 GraphicConfiguration.inc 打開它
找到這行:
{.$define UseLZW} // if this is not defined (default) then neither the GIF format nor the
改成
{$define UseLZW} // if this is not defined (default) then neither the GIF format nor the
修改完後,就可以用 GIF 了 2. 程式裡的寫法,像這樣
uses GraphicEx; procedure TForm1.Button1Click(Sender: TObject); var gif: TGIFGraphic; begin gif := TGIFGraphic.Create; gif.LoadFromFile('c:\test.gif'); Image1.Picture.Assign(gif); gif.free; end; |
LiangJimmy
一般會員 發表:4 回覆:8 積分:2 註冊:2004-10-25 發送簡訊給我 |
|
wyndog
資深會員 發表:7 回覆:362 積分:348 註冊:2004-10-12 發送簡訊給我 |
|
LiangJimmy
一般會員 發表:4 回覆:8 積分:2 註冊:2004-10-25 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |