重新访问我之前创建的旧网站,对于客户端,我曾经使用类似于以下的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页。
我还进行了验证检查,检查无效文档或图像类型,例如&#34; .exe&#34;。接受文件类型的PHP数组包括:"gif", "jpeg", "jpg", "png", "bmp", "tiff", "pdf", "rtf", "doc", "docx"
我通过仅将页面宽度调整为缩略图大小来渲染图像,并在页面中添加标记,所以它们仍然有效,谢天谢地!
但是,我使用Google文档查看器来处理文档文件类型的缩略图。
但现在,Google文档查看器不再支持缩略图创建了!
我有什么选择?
提前致谢!
-James A。