There are two namespaces with class Image. One is iTextSharp and another WPF System.Windows.Control.Image.
iTextSharp
System.Windows.Control.Image
Now I\'ve to use complete refere
Try:
using yourAlias = System.Windows.Control.Image;
Yeps, just use:
using Img = System.Windows.Control.Image;
In your namespace declaration.
Then you can use the Img aliased name as you used the fully qualified name previously.
Img