重新访问我前段时间创建的旧网站,对于客户端,我曾经使用类似于以下的 PHP 代码:
echo "<div style='display:inline;'><a href='". $uploadedFileURL ."' target='_blank'><img src='https://docs.google.com/viewer?url=". $uploadedFileURLEncoded ."&a=bi&pagenumber=". $docPageNumber ."&w=240' alt='Doc Preview - Page ".$docPageNumber."' title='Doc Preview - Page ".$docPageNumber." class='previewImage' style='width:240px;min-height:311px;display:inline;margin-right:25px; onerror='this.style.display=\"none\"' >...
显示用户上传的任何给定文档的至少 6 页。
我还进行了验证检查,以检查无效文档或图像类型,例如“.exe”。接受的文件类型的 PHP 数组包括:"gif", "jpeg", "jpg", "png", "bmp", "tiff", "pdf", "rtf", "doc", "docx"
我通过仅将它们的宽度调整为缩略图大小来渲染图像,并在页面内使用标记,所以它们仍然可以工作,谢天谢地!
但是,我使用 Google Docs Viewer 来处理文档文件类型的缩略图。
但现在,Google Docs Viewer 不再支持缩略图创建!
我有哪些选择?
提前致谢!
——詹姆斯·A。