Tunanzzz

Results 8 issues of Tunanzzz

### **code:** ``` from psd2svg import psd2svg from psd_tools import PSDImage psd_file = "/home/zhoupc/template-photoshop/data/fo/test.psd" psd = PSDImage.open(psd_file) print(psd2svg(psd[1])) ``` then i get: 矩形 1 ### **This svg's info is a...

### Question train.md的脚本只是训练三个阶段的脚本,如何使用自己的数据集微调已经预训练出的第三个阶段的模型

1. ![image](https://github.com/psd-tools/psd-tools/assets/101855995/6db8fee7-9399-4114-a81e-a3434cf8777d) ![image](https://github.com/psd-tools/psd-tools/assets/101855995/5dd46ed2-ec91-4776-a42e-b9115616eec9) 2. ![image](https://github.com/psd-tools/psd-tools/assets/101855995/020d8f8f-93ac-46ae-9c0c-e69b4cd9871d) ![image](https://github.com/psd-tools/psd-tools/assets/101855995/054ead8d-bf2b-43ea-9f3a-7108c87e8d13) The code is : `print(layer.text, layer.engine_dict['StyleRun'])` Is this due to the unit issue in Photoshop? Why are the values different from what I see...

**Describe the bug** The psd info is: ![image](https://github.com/psd-tools/psd-tools/assets/101855995/a57880e8-4997-4c05-97f1-d95183462a1d) But i get: ![image](https://github.com/psd-tools/psd-tools/assets/101855995/581b1058-f069-4b20-bcbe-bcbc9b71508a) ```python image = layer.composite(force=True) ``` Is because there are 2 Stroke?

now, i can get the type of subpath, and the number of subpath in a shape layer by this code. `for subpath in paths: anchors = [(knot.anchor[1] * layer.width, knot.anchor[0]...

**Describe the bug** Opening PSD files smaller than 50MB works fine, but encountering errors when opening PSD files larger than 50MB. ```python psd_file = "/home/zhoupc/template-photoshop/data/fo/subheading/14.psd" psd_file = PSDImage.open(psd_file) print(len(psd_file._layers)) ```...

bug

### Required prerequisites - [x] I have read the documentation . - [x] I have searched the [Issue Tracker](https://github.com/PKU-Alignment/align-anything/issues) and [Discussions](https://github.com/PKU-Alignment/align-anything/discussions) that this hasn't already been reported. (+1 or comment...

question