Click here to Skip to main content
15,892,059 members
Home / Discussions / Graphics
   

Graphics

 
QuestionCheck if GDI+ bitmap has transparency Pin
TrekkieDK29-May-08 4:19
TrekkieDK29-May-08 4:19 
AnswerRe: Check if GDI+ bitmap has transparency Pin
Matthew Butler29-May-08 8:14
Matthew Butler29-May-08 8:14 
AnswerRe: Check if GDI+ bitmap has transparency Pin
leppie4-Jun-08 2:12
leppie4-Jun-08 2:12 
QuestionMake picturebox image mirror vertical Pin
Krishnraj26-May-08 19:51
Krishnraj26-May-08 19:51 
AnswerRe: Make picturebox image mirror vertical Pin
Matthew Butler27-May-08 9:03
Matthew Butler27-May-08 9:03 
GeneralRe: Make picturebox image mirror vertical Pin
Krishnraj27-May-08 22:55
Krishnraj27-May-08 22:55 
GeneralRe: Make picturebox image mirror vertical Pin
mahboobeh mohamadi17-Oct-10 21:25
mahboobeh mohamadi17-Oct-10 21:25 
GeneralRe: Make picturebox image mirror vertical Pin
mahboobeh mohamadi17-Oct-10 21:45
mahboobeh mohamadi17-Oct-10 21:45 
i fix that!
System.IntPtr srcDC = GetDC(f.Handle);<br />
            Bitmap bmp = new Bitmap(50, f.Height + 30);<br />
            Graphics g = Graphics.FromImage(bmp);<br />
            System.IntPtr bmDC = g.GetHdc();<br />
            BitBlt(bmDC, 0, 0, 50, bmp.Height, srcDC, r, -30, 0x00CC0020 /*SRCCOPY*/);<br />
            r += 10;<br />
            ReleaseDC(f.Handle, srcDC);<br />
            g.ReleaseHdc(bmDC);<br />
            g.Dispose();<br />
<br />
            Image img;<br />
            img = bmp;<br />
            img.RotateFlip(RotateFlipType.RotateNoneFlipX);<br />
            f3.pictureBox1.Image = img;


i should set bitmaps width to 50!(because my pixtureboxs width and actually my last images width is 50);
tnx.
و این منم زنی تنها در آستانه فصلی سرد...

QuestionIDX3D Engine ported to C# 2.0 Pin
J Dixon25-May-08 4:05
J Dixon25-May-08 4:05 
AnswerRe: IDX3D Engine ported to C# 2.0 Pin
RichardM130-May-08 18:58
RichardM130-May-08 18:58 
GeneralRe: IDX3D Engine ported to C# 2.0 Pin
J Dixon31-May-08 3:42
J Dixon31-May-08 3:42 
GeneralRe: IDX3D Engine ported to C# 2.0 Pin
RichardM13-Jun-08 21:47
RichardM13-Jun-08 21:47 
GeneralRe: IDX3D Engine ported to C# 2.0 Pin
Member 474720127-Oct-09 23:45
Member 474720127-Oct-09 23:45 
GeneralRe: IDX3D Engine ported to C# 2.0 Pin
RichardM128-Oct-09 5:48
RichardM128-Oct-09 5:48 
GeneralRe: IDX3D Engine ported to C# 2.0 Pin
RichardM128-Oct-09 8:15
RichardM128-Oct-09 8:15 
Questioncompute final image from image on base plane (Volume Visualization) Pin
sahinmansur19-May-08 0:53
sahinmansur19-May-08 0:53 
QuestionNeed to find the object details from Kernel address Pin
Noordeen Shah17-May-08 17:20
Noordeen Shah17-May-08 17:20 
AnswerRe: Need to find the object details from Kernel address Pin
Shog917-May-08 18:03
sitebuilderShog917-May-08 18:03 
AnswerRe: Need to find the object details from Kernel address Pin
Tim Craig17-May-08 18:55
Tim Craig17-May-08 18:55 
Questiona cool idea Pin
duo!@#17-May-08 14:55
duo!@#17-May-08 14:55 
AnswerRe: a cool idea Pin
Christian Graus17-May-08 15:55
protectorChristian Graus17-May-08 15:55 
GeneralRe: a cool idea Pin
duo!@#17-May-08 18:25
duo!@#17-May-08 18:25 
GeneralRe: a cool idea Pin
Jeremy Falcon17-May-08 18:33
professionalJeremy Falcon17-May-08 18:33 
GeneralRe: a cool idea Pin
Christian Graus17-May-08 18:38
protectorChristian Graus17-May-08 18:38 
GeneralRe: a cool idea Pin
duo!@#17-May-08 18:54
duo!@#17-May-08 18:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.