Guest User

Untitled

a guest
Nov 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. private void btnGuardaImatge_Click(object sender, EventArgs e)
  2. {
  3. using (SaveFileDialog saveFileDialog = new SaveFileDialog())
  4. {
  5. saveFileDialog.InitialDirectory = "c:\";
  6. saveFileDialog.Filter = "Bitmap (*.bmp)|*.bmp| Png| *.png| Tots els fitxers(*.*)|*.*";
  7. saveFileDialog.FilterIndex = 1;
  8.  
  9. if (saveFileDialog.ShowDialog() == DialogResult.OK)
  10. {
  11. Bitmap b = new Bitmap(saveFileDialog.FileName);
  12. pctOriginal.Image = b;
  13. this.imatge = b;
  14. }
  15. }
  16. }
  17.  
  18. Bitmap b = new Bitmap(Filename: saveFileDialog.FileName);
Add Comment
Please, Sign In to add comment