网上没找GestureImageView的jar包,自己打了一个。
2023-03-31 11:03:40 27KB gesture imageview 缩放图片
1
福利福利,Ghostscript.dll实现将PDF文件转成图片Demo,下载打开直接改路径就可以。亲测可用!
2023-03-30 21:19:58 8.14MB Ghostscript. pdf转图片 Ghostscript.
1
小程序顶部通栏,展示图片,随着页面滚动,开始渐变展标题记及纯色吸顶样式 主要使用了小程序中的scroll-view组件,通过滚动时触发 bindscroll和滚动到顶部 bindscrolltoupper改变顶部栏的样式效果 动图效果及使用见博客:https://aixiaodou.blog.csdn.net/article/details/124193385
2023-03-30 18:14:55 4KB 微信小程序 小程序
1
matlab图片叠加的代码NPBayes_fMRI 描述 这是一个用户友好的Matlab GUI,它实现了一个统一的,概率统一的非参数贝叶斯框架,用于分析来自多对象实验的与任务相关的fMRI数据。 该建模方法基于时空线性回归模型,该模型通过先于空间通知的多对象非参数变量选择来具体说明神经元活动中对象间的异质性。 该方法的一个特征是,它可以将受试者聚集到以相似的大脑React为特征的亚组中,同时生成组级和受试者级激活图。 方法和软件在以下手稿中进行了描述: Zhang,L.,Guindani,M.,Versace,F.,Engelmann,JM和Vannucci,M.(2016)。 多主题fMRI数据的时空非参数贝叶斯模型。 应用统计年鉴,10(2),638-666。 Kook,JH,Guindani,M.,Zhang,L.和Vannucci,M.(2018)。 NPBayes-fMRI:单对象和多对象fMRI数据的非参数贝叶斯通用线性模型。 生物科学统计学。 该代码已于17年10月31日向公众发布。 内容 该存储库包含以下文件夹: 示例文件夹包含Matlab数据集和自动解剖标记(AAL
2023-03-30 15:47:59 77.97MB 系统开源
1
鼠标移上去,图片切换效果,有三十多种效果,Hover effect
2023-03-30 15:03:31 468KB web
1
特点:鼠标悬停在图片区域后,滑动鼠标滚轮,图片会整屏切换 缺点:调用js较多 使用方法: 1、在你的网页中引入lanrenzhijia.css样式 2、将代码部分拷贝到你的网页之中 注意事项: 1、列表li之间的距离,不能用margin。    因为滚动的距离,要判断li的宽度,否则会导致滚动下一屏的时候出现错位问题
2023-03-30 14:17:37 7KB jquery特效
1
比较个性化的一款banner焦点图特效,支持暂停、开始。切换部分为多张小图片轮播,效果很不错
2023-03-30 10:25:45 445KB 焦点图 个性化 小图片轮播
1
这是一款支持鼠标滚轮控制的CSS3图片滚动切换展示特效,可看作是一个网页焦点图特效,也可看作是单纯的图片展示吧,可通过鼠标中轮滚动的方法来切换当前图片,上一张,下一张浏览查看图片。
2023-03-30 09:39:57 90KB HTML5_CSS3源码-模板插件
1
Microsoft Visual Studio 2010做的C#图片缩放实例,主要代码: Image imageSource = bitmapSource; ImageFormat sourceFormat = imageSource.RawFormat; int iSourceWidth = imageSource.Width; int iSourceHeight = imageSource.Height; decimal decTargetWidth = iSourceWidth*decTimes; decTargetWidth = Math.Round(decTargetWidth, 0); string sTargetWidth = decTargetWidth.ToString( ); int iTargetWidth = Int32.Parse(sTargetWidth); decimal decTargetHeight = iSourceHeight * decTimes; decTargetHeight = Math.Round(decTargetHeight, 0); string sTargetHeight = decTargetHeight.ToString(); int iTargetHeight = Int32.Parse(sTargetHeight); Bitmap bitmapTarget = new Bitmap(iTargetWidth, iTargetHeight); Graphics gTarget = Graphics.FromImage(bitmapTarget); gTarget.Clear(Color.Transparent); // 设置画布的描绘质量 gTarget.CompositingQuality = CompositingQuality.HighQuality; gTarget.SmoothingMode = SmoothingMode.HighQuality; gTarget.InterpolationMode = InterpolationMode.HighQualityBicubic; gTarget.DrawImage(imageSource, new Rectangle(0, 0, iTargetWidth, iTargetHeight), 0, 0, imageSource.Width, imageSource.Height, GraphicsUnit.Pixel); gTarget.Dispose(); // 以下代码为保存图片时,设置压缩质量 EncoderParameters encoderParams = new EncoderParameters(); long[] lQualityS = new long[1]; lQualityS[0] = 100; EncoderParameter EncoderParameterVar = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, lQualityS); encoderParams.Param[0] = EncoderParameterVar; imageSource.Dispose();
2023-03-29 22:36:43 85KB VS2010 图片缩放
1
C#图片缩放控件源码,VS2013。亲测无误。 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.
2023-03-29 22:30:24 218KB C# 图片 缩放控件 源码
1