-
Content count
687 -
Joined
-
Last visited
Everything posted by abhay
-
yup sure buddy every1 is invited to help! where do ya stay ?? mumbai! if yes we can meet up with chirag and discuss it out
-
One India / One Nation / One Rupee Plans by various operators
abhay replied to kcvvenkit's topic in The Lounge
lol -
common guys!! wtf show some intrest StaticElectricity + linux its already new yr i support ur exams and ur helth would b fine by now (respectively ) common app is not easy to devp on my own otherwise i would have to helped chirag alone! we need some more participation! really cool idea by chirag though
-
tech world is never static one day they say somethign other day they almost deny it http://www.theinquirer.net/?article=28697
-
One India / One Nation / One Rupee Plans by various operators
abhay replied to kcvvenkit's topic in The Lounge
the scheme is a fu*kup isint as googd as reliance's scheme -
here guys this is what i wanna do take a image modify it and save it the class which i am using is System.Drawing.Bitmap Bitmap objBitmap1 = new Bitmap(this.textBox1.Text); Bitmap objBitmap2 = new Bitmap(objBitmap1.Width,objBitmap1.Height); // copy and modification code for objBitmap2 and then store it in a new file // here is how i save objBitmap2.Save(this.textBox3.Text); now the problem with saving is when i save this way everythings fine except that the file size increases to MB's a mere 100 kb jpeg file turns out to be 4-5 mb jpeg file and when i use a overloaded function of save ie public void Save( string filename, ImageFormat format ); and specify a format, the file size is fine but then the image tend pixels change this is what i dont need i need the same exact pixel data as the image in objBitmap2 to b saved in d file
-
hey guys d wait is over GOOGLE O/S is offcial haha M$UCK http://www.theinquirer.net/?article=28670 some related news http://www.theregister.co.uk/2006/01/03/google_pc_claim/ http://p2pnet.net/story/7482 http://news.com.com/2061-11199_3-6015932.html http://www.webpronews.com/topnews/topnews/...ySeeCPMAds.html for me guys if the O/S is out then i will be d first person to shift from M$UCK to google !! what say guys ???? just hope they have support for the windows programs that im using! compatibility will be lot of a issue
-
hehhehehehhehehehehehehhehe "aam hai kya" lol well contiuning with ICEMAN's rather intresting facts heres some more The Top 10 Craziest Science Stuff you didn't know You can Hypnotize Chickens You can have an erection once dead <<- a intresting one guyz Your hand can have a life of it's own Don't laugh too much, it can kill you A weapon could make you Gay It's true, Men can breastfeed Bart Simpson's Tomacco (half tomato, half tobacco) was possible It's OK to have a third nipple You can die on the Toilet Picking one's nose and eating it might be healthy 4 details visit here
-
well for my App @present due to the complexity of d stuff i havent included jpeg file only BMP files are accepted may b d second ver os the app would have support for jpg file lots of R&D left on the jpg format and stuff at a glance the huffman seems to be useful but dont actully know how to implement it in .net may be some more R&D @ that topic is needed thx for d info btw
-
http://seattletimes.nwsource.com/html/busi...912_paul02.html some related news :- http://www.financialexpress.com/fe_full_st...ntent_id=113204 comments :- YUP IT ALL DEPENDS ON WEB 2.0
-
hey on d ? of returning money what will happen to the TATA's "2 saal tak chal challa chal offer" suscribers since tata has launched a new lifetime offer the suscribers of previous offer are @ a huge loss 2) @worst the current suscribers @ the scheme will retain and they will not return the money BUT will not add additional suscribers on the same scheme
-
yeah and for their 400 cr the entire telecom industry shuld suffer
-
http://www.thehindubusinessline.com/blnus/15021506.htm the only group which was working for us is now working against us
-
Anil Takes Over As Chairman Of Reliance Infocomm
abhay replied to Arun's topic in Reliance Communications
http://economictimes.indiatimes.com/articleshow/1354513.cms -
http://sifybroadband.techwhack.com/347/020...-year-validity/
-
http://www.ciol.com/content/news/2005/105123005.asp haha tatas did it again! i think there is more room for in LIFE TIME SPACE lowest offer ever by indian companies hey guys what about the call charges for other mobiles and companies ??
-
hey static i only replied d third time coz linux guys asked me to upload d image yup i did read ur prevoius post grrrrr
-
happy new year every1 in d MATRIX and outside
-
as i said nothing NOT even a single PIXEL VALUE changes during the copying if saved by method 1* but the size increases multifolds BUT BUT BUT if i save it into a JPEG extention using METHOD 2 then the file size remains the same BUT the pixel value changes *method 1 [C#] public void Save(string); *METHOD 2 [C#] public void Save(string, ImageFormat); below is the orignal image http://img411.imageshack.us/img411/1715/images6vc.jpg here is a link to a image using method 2 ie specify the image format during save http://img403.imageshack.us/img403/1471/aa6us.jpg hehe i cant upload the third image , its using the METHOD 1 and its 3.84 mb u try it urself c# code a) the image size dose not change b ) the pixel values change ONLY if i save it in a a jpg format c) if we check the image pixelwise orignal image == method 1 but orignal image != method 2 which should be coz the image is also a jpg and we are just copying the pixels thats it PS yup my RnD are most of the time WIERD
-
http://economictimes.indiatimes.com/articleshow/1307284.cms
-
http://www.outlookindia.com/pti_news.asp?id=345295 some related news :- http://dnaindia.com/report.asp?NewsID=1004759 http://www.outlookindia.com/pti_news.asp?id=345275
-
ok here is what i did using c# 1) i loaded a image (jpg) into THE bitmap class in .net 2) made another bitmap class and intantiated it to the same hieght /width /PixelFormat as the prevoius one like this Bitmap objBitmap1 = new Bitmap(this.textBox1.Text); Bitmap objBitmap2 = new Bitmap(objBitmap1.Width,objBitmap1.Height,objBitmap1.PixelFormat); 3) now i copied from former (objBitmap1) object to other bitmap object(objBitmap2) PIXEL BY PIXEL like this for (int intY = 0;intY <= objBitmap1.Height - 1; intY++) { for (int intX = 0;intX <= objBitmap1.Width -1;intX++) { objBitmap2.SetPixel(intX,intY,objBitmap1.GetPixel(intX,intY)); } } NOTE :- PIXEL BY PIXEL 4) now when i save objBitmap2 in a file I have TWO options save it normally OR save it with a format specfied a) Saves this Image object to the specified file in the specified format. [C#] public void Save(string, ImageFormat); Saves this Image object to the specified file. [C#] public void Save(string); when i use the latter one i get a compressed image but and when even better i get a image which is smaller in size to the orignal one BUT the pixels are changed** and if i use the former one then the image format is uncompressed but pixels are noe changed** **by pixels i mean the RGB values in them and even if they are changed in the first save option the diffrence is not visible to a human eye but one can programatically detect the diffrence i need to creat a exact same replica of the image
-
Virtual Memory Setting For P-3,800,128,xp Sp-2?
abhay replied to drali's topic in General Technical Discussion
or RAther sell this pc and buy a new one @least p4 512k ram PC's are cheap today u might get one for under 20k -
hmm no wonder VMware hangs up my XP with 1 gig of ram and 1.7 celeron
-
give it a break its a 7 yr old company after all