-
Notifications
You must be signed in to change notification settings - Fork 393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
转word后图片被旋转180° #297
Comments
看看 #292 的fix方案能用不 |
谢谢回复!!!result: pip3 uninstall pdf2docx
pip3 install git+https://github.com/ArtifexSoftware/pdf2docx.git@jules 根据历史issue,这个问题看起来还很难解决,您有空了再说吧 |
主分支还没有合并提交 我的修改不是在主分支这里 |
尝试:pip3 install git+https://github.com/ArtifexSoftware/pdf2docx.git@98e92cb40c3f45dba7abd18f1cbac4171ee40e0c
Cloning https://github.com/ArtifexSoftware/pdf2docx.git (to revision 98e92cb40c3f45dba7abd18f1cbac4171ee40e0c) to /tmp/pip-req-build-w2enmgk0
Running command git clone --filter=blob:none --quiet https://github.com/ArtifexSoftware/pdf2docx.git /tmp/pip-req-build-w2enmgk0
Running command git rev-parse -q --verify 'sha^98e92cb40c3f45dba7abd18f1cbac4171ee40e0c'
Running command git fetch -q https://github.com/ArtifexSoftware/pdf2docx.git 98e92cb40c3f45dba7abd18f1cbac4171ee40e0c
Running command git checkout -q 98e92cb40c3f45dba7abd18f1cbac4171ee40e0c
Resolved https://github.com/ArtifexSoftware/pdf2docx.git to commit 98e92cb40c3f45dba7abd18f1cbac4171ee40e0c
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [27 lines of output]
Traceback (most recent call last):
File "<string>", line 33, in load_requirements
ModuleNotFoundError: No module named 'pip'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 353, in <module>
main()
File "/usr/local/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 335, in main
json_out['return_val'] = hook(**hook_input['kwargs'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py", line 118, in get_requires_for_build_wheel
return hook(config_settings)
^^^^^^^^^^^^^^^^^^^^^
File "/tmp/pip-build-env-hv1a70__/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 325, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/pip-build-env-hv1a70__/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 295, in _get_build_requires
self.run_setup()
File "/tmp/pip-build-env-hv1a70__/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 487, in run_setup
super().run_setup(setup_script=setup_script)
File "/tmp/pip-build-env-hv1a70__/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 311, in run_setup
exec(code, locals())
File "<string>", line 60, in <module>
File "<string>", line 36, in load_requirements
ModuleNotFoundError: No module named 'pip'
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output. 为了确保pip没问题,然后我又尝试:pip install git+https://github.com/ArtifexSoftware/pdf2docx.git@98e92cb40c3f45dba7abd18f1cbac4171ee40e0c 为了确保不是我环境问题,我又安装了主分支:pip3 install git+https://github.com/ArtifexSoftware/pdf2docx.git |
我改的东西也不多吧...你直接安装完后在库里改掉看看不就ok了吗,而且提交还没有被合并,为啥你从主库拉呢 |
谢谢非常有效!!! |
我的方案不是很好,但是矩阵变换玩不通,另外源码还有问题就是png会丢失透明度,还需要处理 |
@heweisheng 多谢兄弟,我也遇到一样的问题,不过不是所有图片,而是部分图片被旋转90°,使用你的PR可以解决。 |
我现在发现还有些细节要处理下,有个印章的旋转不是90倍数的,这个方案有问题,我还在修改中 |
#298 完善了矩阵变换的流程,你们可以测试下有问题不,我这里把印章的效果解决了,修复了png丢失透明度的bug,自测了下所有的exif情况没有什么问题,虽然逆矩阵的原因没有弄明白,但是能跑出预期的数据了 @yanhuixie @liuts-plane |
多谢兄弟,赞神速~ |
Images may internally contain rotation (EXIF information). We need to check the image insertion matrix and appropriately reverse this action before outputting to word. |
您好,在提出这个问题之前,我已经看过了其他issue,比如:#110
问题描述:
我使用command将pdf转成word时,所有的图片发生了180°的旋转,使用的命令:pdf2docx convert ./iso66.pdf iso66.docx
问题pdf:
iso66.pdf
我的本地版本:
非常感谢您百忙之中的解答!
The text was updated successfully, but these errors were encountered: