它的官网:http://www.s-shot.ru/ 调用格式 http://mini.site-shot.com/分辨率/宽度/格式/?网址 http://mini.site-shot.com/1024×768/600/jpg/?www.xiumu.org https://mini.site-sh...
分类:
Web程序 时间:
2014-10-09 14:30:13
阅读次数:
167
1.创建项目aboutgreybox2.添加图片p_w_picpaths0.jpg1.jpg3.添加GreyBox支持greybox4.缩写jsp文件index.jsp<ahref="p_w_picpaths/0.jpg"rel="gb_p_w_picpathset[nice_pics]"title="我的相册"><imgalt=""src="p_w_picpaths/0.jpg"></a><ahref="p_w_picpath..
分类:
其他好文 时间:
2014-10-09 02:55:18
阅读次数:
155
%%%%% motion blur
clc;
clear all;
close all;
Image=imread('4.jpg');
Image=ouble(Image);
theta=pi/4;
len=20;
row=floor(len*sin(theta))+1;
col=floor(len*cos(theta))+1;
motion_f1(1:row,1:c...
分类:
其他好文 时间:
2014-10-08 16:02:05
阅读次数:
237
申明:转载请注明出处。 设在“D:\UserDesktop\pic\”目录下有很多张格式为jpg照片,命名不规则,如图。 现在用MATLAB批量修改所有图片的命名格式,改为1.jpg,2.jpg,....1 path = 'D:\UserDesktop\pic\';2 D = dir([...
分类:
其他好文 时间:
2014-10-08 15:16:25
阅读次数:
687
一、求均值% 求一副灰度图像的均值close all;clear;clc;i=imread('d:/lena.jpg'); %载入真彩色图像i=rgb2gray(i); %转换为灰度图i=double(i); %将uint8型转换为double型,否则不能计算统计量% avg1=mean(i,1)....
分类:
其他好文 时间:
2014-10-06 16:59:40
阅读次数:
502
一个大型网站经常要实现图片跳转,轮播,如何实现呢,首先建立一个asp文件,设置成索引文件,比如index.asp,以asp语言为例,代码清单如下:<%ifInstr(request.ServerVariables("HTTP_REFERER"),"baidu")>0Thenurl="test.jpg"elseurl="http://www.xxxx.cn"endifresponse.R..
分类:
Web程序 时间:
2014-10-05 16:12:09
阅读次数:
251
var pic = new Array();var curindex=0;pic[0]="image/p1.jpg";pic[1]="image/p2.jpg";pic[2]="image/p3.jpg";setInterval(go, 3000);function go(){ documen...
分类:
Web程序 时间:
2014-10-04 02:09:35
阅读次数:
241
1 $content = "html代码";2 preg_match_all("/(href|src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $content, $img_array);3 print_r($img_array);
分类:
Web程序 时间:
2014-10-03 02:18:23
阅读次数:
176
这篇文章主要介绍了c#在sql中存取图片image示例,需要的朋友可以参考下(1)控制台应用程序下演示插入图片复制代码 代码如下:public void InsertIMG() { //将需要存储的图片读取为数据流 FileStream fs = new FileStream(@"E:\c.jpg"...
分类:
数据库 时间:
2014-10-01 13:26:21
阅读次数:
217