Hi,
It seems that nobody talk about this problem before. So
it may be a problem of mine.
When I use the void Graphics.DrawImage(Image image,
Rectangle destRect,
Rectangle srcRect,
GraphicsUnit srcUnit
);
if the size of the srcRect is different from the destRect
I must reduce from 1 pixel srcRect.Width and
srcRect.Height.
So what I have to do is
if(destRect.Size!=srcRect.Size)
{
srcRect=new Rectangle
(srcRect.X,srcRect.Y,srcRect.Width-1,srcRect.Height-1);
}
If someone encounter this pb tell me please.