Page 1 of 1
Saving in good quality
Posted: Fri Dec 21, 2007 4:33 pm
by Dagger13
well i made a program kinda like paint and for some reason
when i save it its always in bad quality way worst then photoshop and i was wondering if any one of you knew how to fix this
its in VB2005
Re: Saving in good quality
Posted: Fri Dec 21, 2007 4:38 pm
by Prey
Show us how you're currently saving.
Posted: Fri Dec 21, 2007 4:59 pm
by Dagger13
Me.picdraw.Image.Save(sFileName)
'picdraw = picturebox control
sFileName = the name there saving the picture as'
Posted: Fri Dec 21, 2007 5:14 pm
by Prey
Perhaps try:
Code: Select all
picdraw.Image.Save(sFileName, System.Drawing.Imaging.ImageFormat.Gif);
Or one of the other formats also in the list.
Posted: Fri Dec 21, 2007 5:43 pm
by Patrickh
Prey wrote:Perhaps try:
Code: Select all
picdraw.Image.Save(sFileName, System.Drawing.Imaging.ImageFormat.Gif);
Or one of the other formats also in the list.
I've saved Images like that before, they also come out crappy
Posted: Fri Dec 21, 2007 5:46 pm
by Dagger13
ok thx that helped