以下のコードを追加して、SikuliにPILをインポートしたい
import sys
sys.path.append("C:\\Python27\Lib\site-packages")
sys.path.append("C:\\Python27\Lib\site-packages\PIL")
import PIL
import Image
したがって、上記のモジュールをインポートしましたが、ImageFontをインポートしようとすると、以下のエラーが発生します。
def getmask2(self, text, mode="", fill=Image.core.fill):
File "C:\Python27\Lib\site-packages\PIL\Image.py", line 39, in __getattr__
raise ImportError("The _imaging C module is not installed")
ImportError: The _imaging C module is not installed
PythonスクリプトでPILとImageおよびImageFontを正常にインポートでき、コードは正常に実行されています。これを修正する方法はありますか?