I have a problem when compiling the project : ambiguous reference that the two codes
Image img = pictureBox1.Image.Crop(_selection);
and
pictureBox1.Image = img.Fit2PictureBox(pictureBox1);
are ambiguous with errors respectively
Error 1 The call is ambiguous between the following methods or properties:
'gfoidl.Imaging.ImageExtension.Crop(System.Drawing.Image, System.Drawing.Rectangle)' and
'gfoidl.Imaging.ImageExtension.Crop(System.Drawing.Image, System.Drawing.Rectangle)' E:\2012-11 (Nov)\Cropping of Images\Form1.cs 76 29 Cropping of Images
Error 2 The call is ambiguous between the following methods or properties:
'gfoidl.Imaging.ImageExtension.Fit2PictureBox(System.Drawing.Image, System.Windows.Forms.PictureBox)' and
'gfoidl.Imaging.ImageExtension.Fit2PictureBox(System.Drawing.Image, System.Windows.Forms.PictureBox)' E:\2012-11 (Nov)\Cropping of Images\Form1.cs 79 25 Cropping of Images
private void pictureBox1_MouseUp(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left && _selecting)
{
// Create cropped image:
Image img = pictureBox1.Image.Crop(_selection);
// Fit image to the picturebox:
pictureBox1.Image = img.Fit2PictureBox(pictureBox1);
_selecting = false;
}
}
If you please tell me how to reference those without ambiguous
Referencesnode of the tree in Solution Explorer). You will probably find that the project is referencing itself. Delete the self-reference. Then read this to understand why it happened: connect.microsoft.com/VisualStudio/feedback/details/613502/… – Igby Largeman Jan 29 at 5:46