1. the psd file is in Photoshop format and cannot be directly displayed in the browser. you need to generate a preview of the psd file. after several days, Google did not find the available code, so I studied it myself, finally, the solution is found. first, export the psd file as a jpg file, and then generate a thumbnail for it, which is much easier. 2. SyntaxHighlighte
1. the psd file is in Photoshop format and cannot be directly displayed in the browser. you need to generate a preview of the psd file. after several days, Google did not find the available code, so I studied it myself, finally, the solution is found. first, export the psd file as a jpg file, and then generate a thumbnail for it, which is much easier.
2. you need to use an open-source php library: imagemagick. installation method: Google searches for "ImageMagick php windows installation". of course, if you are Linux, replace Windows with Linux.
3. after the installation is complete, the key is how to use it. after several hours of hard work, the switch is finally implemented, which is very simple:
$ Mw = NewMagickWand ();
MagickReadImage ($ mw, 123.psd );
MagickResetIterator ($ mw );
MagickWriteImage ($ mw, "123.jpg ");