Click here to Skip to main content
15,922,630 members
Home / Discussions / C#
   

C#

 
GeneralRe: EventLog size Pin
Eddy Vluggen17-Jun-10 1:03
professionalEddy Vluggen17-Jun-10 1:03 
GeneralRe: EventLog size Pin
Pete O'Hanlon17-Jun-10 1:21
mvePete O'Hanlon17-Jun-10 1:21 
GeneralRe: EventLog size Pin
Eddy Vluggen17-Jun-10 1:53
professionalEddy Vluggen17-Jun-10 1:53 
GeneralRe: EventLog size Pin
Luc Pattyn17-Jun-10 5:27
sitebuilderLuc Pattyn17-Jun-10 5:27 
GeneralRe: EventLog size Pin
Dave Kreskowiak17-Jun-10 1:52
mveDave Kreskowiak17-Jun-10 1:52 
GeneralRe: EventLog size Pin
Jassim Rahma17-Jun-10 4:09
Jassim Rahma17-Jun-10 4:09 
GeneralRe: EventLog size Pin
Bernhard Hiller17-Jun-10 5:18
Bernhard Hiller17-Jun-10 5:18 
Questionhelp author question Pin
Jassim Rahma16-Jun-10 22:54
Jassim Rahma16-Jun-10 22:54 
Questionchange MessageBox button caption Pin
Jassim Rahma16-Jun-10 22:41
Jassim Rahma16-Jun-10 22:41 
AnswerRe: change MessageBox button caption Pin
Nuri Ismail16-Jun-10 22:57
Nuri Ismail16-Jun-10 22:57 
QuestionHow can i hide or rename the process name in task manager? c# is better Pin
mobasher16-Jun-10 22:28
mobasher16-Jun-10 22:28 
AnswerRe: How can i hide or rename the process name in task manager? c# is better Pin
Eddy Vluggen17-Jun-10 0:03
professionalEddy Vluggen17-Jun-10 0:03 
AnswerRe: How can i hide or rename the process name in task manager? c# is better Pin
Dave Kreskowiak17-Jun-10 1:46
mveDave Kreskowiak17-Jun-10 1:46 
Questionhashtable limitation? Pin
Jassim Rahma16-Jun-10 22:05
Jassim Rahma16-Jun-10 22:05 
AnswerMessage Closed Pin
16-Jun-10 22:33
stancrm16-Jun-10 22:33 
GeneralRe: hashtable limitation? Pin
Jassim Rahma16-Jun-10 22:36
Jassim Rahma16-Jun-10 22:36 
GeneralMessage Closed Pin
16-Jun-10 22:39
stancrm16-Jun-10 22:39 
GeneralRe: hashtable limitation? Pin
Jassim Rahma16-Jun-10 22:43
Jassim Rahma16-Jun-10 22:43 
AnswerRe: hashtable limitation? Pin
Łukasz Nowakowski16-Jun-10 22:52
Łukasz Nowakowski16-Jun-10 22:52 
AnswerRe: hashtable limitation? Pin
Luc Pattyn17-Jun-10 1:59
sitebuilderLuc Pattyn17-Jun-10 1:59 
GeneralRe: hashtable limitation? Pin
Jassim Rahma17-Jun-10 4:06
Jassim Rahma17-Jun-10 4:06 
GeneralRe: hashtable limitation? Pin
Luc Pattyn17-Jun-10 4:14
sitebuilderLuc Pattyn17-Jun-10 4:14 
GeneralRe: hashtable limitation? Pin
Jassim Rahma17-Jun-10 4:17
Jassim Rahma17-Jun-10 4:17 
GeneralRe: hashtable limitation? Pin
Luc Pattyn17-Jun-10 4:21
sitebuilderLuc Pattyn17-Jun-10 4:21 
QuestionPng Image Saving the original size doubles Pin
VCsamir16-Jun-10 21:39
VCsamir16-Jun-10 21:39 
hi friends $ Seniors,

i am trying to save an image in PNG format, the original image is 24dpi and is 16.2 mb, afterwards i add alpha channel to image and make some portion of the image transperant, after this when i save the image img.save(imagepath, imageformat.png) the size is increased to 33 mb. i wanted to know the image size increased is correct? does the image dpi changed from 24 to 32 increases the image so much?

friends, also debugging my code i found a strange thing, which i would like to share with u

Bitmap bmp = new Bitmap(imagepath);
bmp.save("c:\11.jpg"); // this saved image with 16 mb

Bitmap bmp1 = new Bitmap(bmp);
bmp1.save(c:\\22.jpg); // this saved image with 33 mb

Thanking in Advance

Regards
Samir

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.