Closed lanphone closed 4 years ago
Image.cc 626行 之前是 if(argc == 5) { GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[3], &w); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[4], &h); } 修改成 if(argc == 5) { GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[1], &x); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[2], &y); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[3], &w); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[4], &h); } 重新编译就可以了
尴尬,重构的时候漏了,后面补充上 ut
15075767858 notifications@github.com 于2019年5月23日周四 上午11:43写道:
Image.cc 626行 之前是 if(argc == 5) { GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[3], &w); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[4], &h); } 修改成 if(argc == 5) { GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[1], &x); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[2], &y); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[3], &w); GET_VALUE_WITH_NAPI_FUNC(napi_get_value_uint32, args[4], &h); } 重新编译就可以了
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/zhangyuanwei/node-images/issues/174?email_source=notifications&email_token=AAE2DGZKUDS5H7W4GU6PHFDPWYHERA5CNFSM4GY3PUAKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODWA7KIQ#issuecomment-495056162, or mute the thread https://github.com/notifications/unsubscribe-auth/AAE2DG64LQWDS5FBALQ4QHTPWYHERANCNFSM4GY3PUAA .
最新版本中,这个问题还是没有解决qwq
我按照上面说的修改了image.cc,但是不懂如何重新编译..是不是还需要我自己有c++/c的环境才可以..
请问什么时候修复这个问题呐? 时间长的话 看来要node-gyp重新编译了
@15075767858 之前是在哪个commit呢
编译出错
images( images("ui.png"), 100,100,177,487).save("ssss.png") 无论x,y设置多少,都是从0,0开始复制