java多线程    Java入门    vsftp    ftp    linux配置    centos    FRP教程    HBase    Html5缓存    webp    zabbix    分布式    neo4j图数据库    

wordpress文章列表显示缩略图

看不到不少博客都在列表里显示了缩略图,觉得很好看 在列表的代码里加函数 function getFirstImage($postId) { $args = array( 'numberposts' => 1, 'order'=> 'ASC', 'post_mime_type' => 'image', 'post_parent' => $postId, 'post_status' => null, 'post_type' => 'attachment' ); $attachments = get_children($args); More


java生成高清缩略图

之前写过一个java生成缩略图的算法,最近使用发现大图片缩小以后,效果很差。特意搞到一个生成高清缩略图的算法。相对清晰不少,不过比使用photoshop软件生成的缩略图还是会差一点,不仔细对比,是看不出来的。 高清,都是相对的。这个生成以后效果还不错。 import java.awt.image.BufferedImage; public class ImgHigh { private int width; pri More


JAVA缩略图算法

此算法,用于生成小于一个范围的缩略图,可以根据需要自由改变。 /** ?? ? * Reads an image in a file and creates a thumbnail in another file. ?? ? * ?? ? * @param orig ?? ? *??????????? The name of image file. ?? ? * @param thumb ?? ? *??????????? The name of thumbnail file. Will be created if necessary. ?? ? * @param maxDim ?? ? *?? More