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);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top