i have followed the steps available in the link
http://www.silverlightrecipes.com/2008/03/silverlight-20-deep-zoom-using.html
but i get error
Sys.InvalidOperationException:ImageError error #-2146697209
how to get rid of this.
Thanks in advance
i have followed the steps available in the link
http://www.silverlightrecipes.com/2008/03/silverlight-20-deep-zoom-using.html
but i get error
Sys.InvalidOperationException:ImageError error #-2146697209
how to get rid of this.
Thanks in advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bechir BejaouiPosted Jul 29, 2008, 2:35 PM
public void Zoom(int z )
{
//make use of the z to adjust your zoom
Size ImageSize = new Size(pictureBox1.Width + z ,pictureBox1.Height + z );
Bitmap oBitmap = new Bitmap (pictureBox1.Image ,X);
pictureBox1.Image = oBitmap ;
}
Bechir BejaouiPosted Jul 29, 2008, 2:35 PM
public void Zoom(int z )
{
//make use of the z to adjust your zoom
Size ImageSize = new Size(pictureBox1.Width + z ,pictureBox1.Height + z );
Bitmap oBitmap = new Bitmap (pictureBox1.Image ,X);
pictureBox1.Image = oBitmap ;
}