実行時にFirefoxを起動し、プロセスとウィンドウのハンドルを取得し、Firefoxの画面キャプチャを行い、ディスク(temp.bmp)に保存して呼び出しますProcessGetWindow。私は基本的にMODIのMiSelectRectsを使用して、私が探している単語の周りの矩形をキャプチャしてから、マウスのクリックでAutoITを使用します。MODI MiSelectRectsの座標が正しくない
問題は、私の座標が上から約10ピクセルずれていることです。
何が間違っている可能性がありますか?処理を行う関数は次のとおりです。私はAutoIT処理をコメントアウトしています。実際の座標を表示するためにMessageBoxを使ってデバッグしています。私はAutoITのWindow Infoツールを使って確認しています。それは間違いありません...私は何か間違っているのですか、またはMODIに悩まされていることはありますか?
public void ProcessGetWindow(Bitmap image)
{
Document modiDoc = null;
MiDocSearch modiSearch = null;
IMiSelectableItem modiTextSel = null;
MiSelectRects modiSelectRects = null;
MiSelectRect modiSelectRect = null;
MiRects modiRects = null;
int intSelInfoPN;
string intSelInfoTop;
int intSelInfoBottom;
string intSelInfoLeft;
int intSelInfoRight;
// Load an existing image file.
modiDoc = new Document();
modiDoc.Create(@"C:\\temp.bmp");
// Perform OCR.
modiDoc.Images[0].OCR();
// Search for the selected word.
modiSearch = new MiDocSearch();
modiSearch.Initialize(modiDoc, "Click Me", 0, 0, false, false);
modiSearch.Search(null, ref modiTextSel);
try
{
modiSelectRects = modiTextSel.GetSelectRects();
}
catch (COMException)
{
MessageBox.Show("Me thinks that the OCR didn't work right!");
}
foreach (MiSelectRect mr in modiSelectRects)
{
//intSelInfoPN = mr.PageNumber.ToString();
intSelInfoTop = mr.Top.ToString();
//intSelInfoBottom = mr.Bottom;
intSelInfoLeft = mr.Left.ToString();
//intSelInfoRight = mr.Right;
/*AutoItX3 auto = new AutoItX3();
auto.AutoItSetOption("MouseCoordMode", 2);
auto.MouseClick("", intSelInfoLeft, intSelInfoTop, 1, 80);*/
MessageBox.Show("Coordinates: " + intSelInfoLeft + ", " + intSelInfoTop, "Coordinates", MessageBoxButtons.OK);
}
//string textResult = modiTextSel.Text;
//MessageBox.Show(textResult, "Search Results", MessageBoxButtons.OK);
// Close this dialog.
Application.Exit();
}
Microsoftでは、MODIの使用を推奨していません。ユーザーがOffice 2010にアップグレードすると、問題が発生します。 – TrueWill