Click here to Skip to main content
16,004,991 members
Home / Discussions / C#
   

C#

 
GeneralRe: Finger print Pin
Ashfield8-Jan-09 1:25
Ashfield8-Jan-09 1:25 
GeneralRe: Finger print Pin
Dragonfly_Lee8-Jan-09 19:55
Dragonfly_Lee8-Jan-09 19:55 
QuestionHow can I make an Image tranparent Pin
Naveed7277-Jan-09 20:38
Naveed7277-Jan-09 20:38 
AnswerRe: How can I make an Image tranparent Pin
Lev Danielyan7-Jan-09 23:13
Lev Danielyan7-Jan-09 23:13 
GeneralRe: How can I make an Image tranparent Pin
Naveed7277-Jan-09 23:59
Naveed7277-Jan-09 23:59 
GeneralRe: How can I make an Image tranparent Pin
Lev Danielyan8-Jan-09 0:09
Lev Danielyan8-Jan-09 0:09 
GeneralRe: How can I make an Image tranparent Pin
Naveed7278-Jan-09 0:25
Naveed7278-Jan-09 0:25 
GeneralRe: How can I make an Image tranparent Pin
Lev Danielyan8-Jan-09 0:49
Lev Danielyan8-Jan-09 0:49 
Well, let me say again. If you want to make the whole image transparent, this is equal to creating an empty image of the same size and resolution and saving it, i.e. dropping the content of the image.

You could have modified the code I've sent pretty easy, but anyway, here it is:

Image img = Image.FromFile(@"c:\logo.png");
Bitmap buffer = new Bitmap(img.Width, img.Height);
buffer.SetResolution(img.HorizontalResolution, img.VerticalResolution);
buffer.Save(@"c:\logo2.png");


This will give you the same source image, BUT without the content (I actually wonder what is this for Wink | ;) )

Regards,
Lev

GeneralRe: How can I make an Image tranparent Pin
Naveed7278-Jan-09 1:10
Naveed7278-Jan-09 1:10 
GeneralRe: How can I make an Image tranparent Pin
Lev Danielyan8-Jan-09 1:12
Lev Danielyan8-Jan-09 1:12 
GeneralRe: How can I make an Image tranparent Pin
Luc Pattyn8-Jan-09 3:22
sitebuilderLuc Pattyn8-Jan-09 3:22 
GeneralRe: How can I make an Image tranparent Pin
Lev Danielyan8-Jan-09 5:42
Lev Danielyan8-Jan-09 5:42 
QuestionAccess Modifier, protect child classes constructor Pin
DaveyM697-Jan-09 12:48
professionalDaveyM697-Jan-09 12:48 
AnswerRe: Access Modifier, protect child classes constructor Pin
Colin Angus Mackay7-Jan-09 13:01
Colin Angus Mackay7-Jan-09 13:01 
GeneralRe: Access Modifier, protect child classes constructor Pin
DaveyM697-Jan-09 13:21
professionalDaveyM697-Jan-09 13:21 
GeneralRe: Access Modifier, protect child classes constructor Pin
Colin Angus Mackay7-Jan-09 13:42
Colin Angus Mackay7-Jan-09 13:42 
GeneralRe: Access Modifier, protect child classes constructor Pin
DaveyM697-Jan-09 13:48
professionalDaveyM697-Jan-09 13:48 
GeneralRe: Access Modifier, protect child classes constructor Pin
Luc Pattyn7-Jan-09 14:38
sitebuilderLuc Pattyn7-Jan-09 14:38 
GeneralRe: Access Modifier, protect child classes constructor [modified] Pin
Dragonfly_Lee7-Jan-09 18:11
Dragonfly_Lee7-Jan-09 18:11 
GeneralRe: Access Modifier, protect child classes constructor Pin
Luc Pattyn7-Jan-09 18:15
sitebuilderLuc Pattyn7-Jan-09 18:15 
GeneralRe: Access Modifier, protect child classes constructor Pin
N a v a n e e t h7-Jan-09 18:17
N a v a n e e t h7-Jan-09 18:17 
GeneralRe: Access Modifier, protect child classes constructor Pin
Dragonfly_Lee7-Jan-09 20:36
Dragonfly_Lee7-Jan-09 20:36 
GeneralRe: Access Modifier, protect child classes constructor Pin
DaveyM698-Jan-09 3:01
professionalDaveyM698-Jan-09 3:01 
GeneralRe: Access Modifier, protect child classes constructor Pin
S. Senthil Kumar7-Jan-09 19:24
S. Senthil Kumar7-Jan-09 19:24 
GeneralRe: Access Modifier, protect child classes constructor Pin
Dragonfly_Lee7-Jan-09 20:26
Dragonfly_Lee7-Jan-09 20:26 

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.