converting images and open in fireworks

  • Thread starter Thread starter stecus
  • Start date Start date
S

stecus

Hello,

I can convert the images now and view them in paint and in de preview window
from microsoft windows xp, but I can't open the images(gif, jpeg, ...) in
fireworks and photoshop.
Does anybody know what I do wrong?

Bitmap bmpHulp = new Bitmap(strFileToConvert);

Bitmap mybmp = new Bitmap(bmpHulp,bmpSiz);


mybmp.SetResolution(intResX,intResY);

mybmp.Save(newFileName);

Thanks,

Stefan
 
Problem solved. I need to give the format when I save the image.
mybmp.Save(newFileName, imageformat.gif);
 
Back
Top