利用image物件來顯示圖片大小會發生不對的問題 |
尚未結案
|
dragonhippop
一般會員 發表:5 回覆:0 積分:1 註冊:2004-12-26 發送簡訊給我 |
各位大大好:
我利用兩個button物件來試貼圖片到image物件上,但遇到一個問題,若是我在剛compiier完後先壓圖片大小較小的那個button再壓圖片大小較大的那個button時,會發生較大的那張只能顯示出跟較小的那張一樣的大小,但若是在剛compiler完一開始先壓較大的那張圖片之button再壓較小的那個button就不會都能正常顯示 我的程式如下: [code cpp] void __fastcall TForm1::Button1Click(TObject *Sender) { Graphics::TBitmap *cls_graph; Byte *ptr; cls_graph=new Graphics::TBitmap; cls_graph->Width=320; cls_graph->Height=240; cls_graph->PixelFormat=pf24bit; Image1->Width=cls_graph->Width; Image1->Height=cls_graph->Height; Image1->Canvas->Draw(0,0,cls_graph); delete cls_graph; } void __fastcall TForm1::Button2Click(TObject *Sender) { Graphics::TBitmap *cls_graph; Byte *ptr; cls_graph=new Graphics::TBitmap; cls_graph->Width=640; cls_graph->Height=480; cls_graph->PixelFormat=pf24bit; Image1->Width=cls_graph->Width; Image1->Height=cls_graph->Height; Image1->Canvas->Draw(0,0,cls_graph); delete cls_graph; } [/code] button1是較小的圖片,而button2是較大的圖片,請問是那邊出了問題呢~請各位大大幫幫忙~謝謝 |
yulong375
一般會員 發表:2 回覆:22 積分:19 註冊:2007-03-15 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |