Download imageviewer
Author: s | 2025-04-25
ImageView . View Download PDF . ImageView . View Download PDF . ImageView C. View Download PDF . ImageView CL. View Download PDF . ImageView Version 1. View Download PDF . ImageView . View Download PDF . ImageView . View Download PDF . ImageView . View Download PDF . Imageview
Moo0 ImageViewer - FREE Download Moo0 ImageViewer 1.64
Show navigation To change ImageViewer options By changing ImageViewer options, you can determine how items appear in the Image Viewer window. On the Start menu, locate Kofax PaperPort 14, and then click Image Viewer. Click on the PaperPort button and choose Options. The ImageViewer Options dialog box contains two tabs: General — Controls toolbar options and whether to save a file when you close it. To save items in ImageViewer without being prompted when you start the ImageViewer program and work with images and documents, you can specify whether you want to confirm or discard any changes before PaperPort saves an item you have modified. To tune the default save option: Select Save item without prompting to automatically save items without being prompted. Clear this checkbox if you want to confirm or discard any changes before you save an item. Click OK. Advanced — Specifies the image quality to use when you print to PaperPort (as PDF). Furthermore, in PaperPort Professional, you can use MRC compression technology. Click the tab you want, change one or more options, and then click OK. ImageView . View Download PDF . ImageView . View Download PDF . ImageView C. View Download PDF . ImageView CL. View Download PDF . ImageView Version 1. View Download PDF . ImageView . View Download PDF . ImageView . View Download PDF . ImageView . View Download PDF . Imageview ImageToAVI - Download ImageVampire 5.20 - Download ImageView - Download ImageView 1.21 - Download ImageViewer - Download ImageViewer (68k) 5.4 - Download ImageViewer 6.2 - ImageViewer 关于图片浏览器,支持图片手势缩放、拖拽等操作,自定义View的模式显示,自定义图片加载方式,可自定义索引UI、ProgressView,更加灵活,易于扩展,同时也适用于RecyclerView、ListView的横向和纵向列表模式,最低支持版本为Android 3.0及以上...功能图片的基本缩放、滑动微信朋友圈图片放大预览微信朋友圈图片拖拽效果今日头条图片拖拽效果自定义图片加加载图片加载进度条可自定义图片索引与图片加载进度UI传送门自定义属性事件监听器自定义UI添加依赖使用方法超巨图加载解决方案推荐AutoGridView 宫格控件,QQ空间九宫格、普通宫格模式、点击添加照片...项目演示 自定义属性 属性名描述ivr_showIndex是否显示图片位置ivr_playEnterAnim是否开启进场动画ivr_playExitAnim是否开启退场动画ivr_duration进场与退场动画的执行时间ivr_draggable是否允许图片拖拽ivr_dragMode拖拽模式(simple:今日头条效果事件监听器 方法名描述setOnItemClickListener(OnItemClickListener listener)item 的单击事件setOnItemLongListener(OnItemLongPressListener listener)item 的长按事件setOnItemChangedListener(OnItemChangedListener listener)item 的切换事件setOnDragStatusListener(OnDragStatusListener listener)监听图片拖拽状态事件setOnBrowseStatusListener(OnBrowseStatusListener listener)监听图片浏览器状态事件自定义UI 自定义索引UI框架中内置默认索引视图DefaultIndexUI,如要替换索引样式,可继承抽象类IndexUI,并在使用watch(...)方法前,调用下列方法加载自定义的indexUIloadIndexUI(@NonNull IndexUI indexUI)自定义加载进度UI框架中内置默认加载视图DefaultProgressUI,如要替换加载样式,可继承抽象类ProgressUI,并在使用watch(...)方法前,调用下列方法加载自定义的progressUIloadProgressUI(@NonNull ProgressUI progressUI)添加依赖 Gradle Step 1: allprojects { repositories { ... // 如果添加依赖时,报找不到项目时(则项目正在审核),可以添加此句maven地址,如果找到项目,可不必添加 maven { url " } } } Step 2: dependencies { compile 'indi.liyi.view:image-viewer:3.0.1' }Maven indi.liyi.view image-viewer 3.0.1 pom "> dependency> groupId>indi.liyi.viewgroupId> artifactId>image-viewerartifactId> version>3.0.1version> type>pomtype> dependency>使用方法XML 中添加 ImageViewer"> 代码中设置 ImageViewer一共提供两种配置ImageViewer的方法:方法一:imageViewer.overlayStatusBar(false) // ImageViewer 是否会占据 StatusBar 的空间 .imageData(list) // 图片数据 .bindViewGroup(gridview) // 目标 viewGroup,例如类似朋友圈中的九宫格控件 .imageLoader(new PhotoLoader()) // 设置图片加载方式 .playEnterAnim(true) // 是否开启进场动画,默认为true .playExitAnim(true) // 是否开启退场动画,默认为true .duration(true) // 设置进退场动画时间,默认300 .showIndex(true) // 是否显示图片索引,默认为true .loadIndexUI(indexUI) // 自定义索引样式,内置默认样式 .loadProgressUI(progressUI) // 自定义图片加载进度样式,内置默认样式 .watch(position); // 开启浏览此方法是用imageData()配合bindViewGroup()方法,来在内部构建自动构建item的信息模型ViewData,适用于目标ViewGroup类似于朋友圈九宫格控件这类场景,目标ViewGroup如果是ListView这种可重复利用item的控件,则不可用。方法二: imageViewer.overlayStatusBar(false) // ImageViewer 是否会占据 StatusBar 的空间 .viewData(vdList) // 数据源 .imageLoader(new PhotoLoader()) // 设置图片加载方式 .playEnterAnim(true) // 是否开启进场动画,默认为true .playExitAnim(true) // 是否开启退场动画,默认为true .duration(true) // 设置进退场动画时间,默认300 .showIndex(true) // 是否显示图片索引,默认为true .loadIndexUI(indexUI) // 自定义索引样式,内置默认样式 .loadProgressUI(progressUI) // 自定义图片加载进度样式,内置默认样式 .watch(position);此方法直接使用viewData()设置框架所需要的数据源Tip:关于点击系统返回键取消图片浏览如果需要实现点击返回系统返回键关闭浏览,请在Activity中加入以下代码 /** * 监听返回键 * * @param keyCode * @param event * @return */ @Override public boolean onKeyDown(int keyCode, KeyEvent event) { boolean b = imageViewer.onKeyDown(keyCode, event); if (b) { return b; } return super.onKeyDown(keyCode, event); }超巨图解决方案因为可以自定义图片加载方法,在加载图片前可以先压缩图片项目内部目前使用的图片缩放控件为PhotoView,可以将PhotoView用以下控件代替:使用 SubsamplingScaleImageView 代替 PhotoView(推荐)或者使用 BigImageView 代替 PhotoView赞赏如果你感觉 ImageViewer 帮助到了你,可以点右上角 "Star" 支持一下哦!:blush:微信公众号有兴趣的同学可以关注微信公众号「Code满满」或者笔者的个人博客「李益的小站」其他平台简书:李益99CSDN:李益99LICENSECopyright 2017 liyiLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.Comments
Show navigation To change ImageViewer options By changing ImageViewer options, you can determine how items appear in the Image Viewer window. On the Start menu, locate Kofax PaperPort 14, and then click Image Viewer. Click on the PaperPort button and choose Options. The ImageViewer Options dialog box contains two tabs: General — Controls toolbar options and whether to save a file when you close it. To save items in ImageViewer without being prompted when you start the ImageViewer program and work with images and documents, you can specify whether you want to confirm or discard any changes before PaperPort saves an item you have modified. To tune the default save option: Select Save item without prompting to automatically save items without being prompted. Clear this checkbox if you want to confirm or discard any changes before you save an item. Click OK. Advanced — Specifies the image quality to use when you print to PaperPort (as PDF). Furthermore, in PaperPort Professional, you can use MRC compression technology. Click the tab you want, change one or more options, and then click OK.
2025-04-03ImageViewer 关于图片浏览器,支持图片手势缩放、拖拽等操作,自定义View的模式显示,自定义图片加载方式,可自定义索引UI、ProgressView,更加灵活,易于扩展,同时也适用于RecyclerView、ListView的横向和纵向列表模式,最低支持版本为Android 3.0及以上...功能图片的基本缩放、滑动微信朋友圈图片放大预览微信朋友圈图片拖拽效果今日头条图片拖拽效果自定义图片加加载图片加载进度条可自定义图片索引与图片加载进度UI传送门自定义属性事件监听器自定义UI添加依赖使用方法超巨图加载解决方案推荐AutoGridView 宫格控件,QQ空间九宫格、普通宫格模式、点击添加照片...项目演示 自定义属性 属性名描述ivr_showIndex是否显示图片位置ivr_playEnterAnim是否开启进场动画ivr_playExitAnim是否开启退场动画ivr_duration进场与退场动画的执行时间ivr_draggable是否允许图片拖拽ivr_dragMode拖拽模式(simple:今日头条效果事件监听器 方法名描述setOnItemClickListener(OnItemClickListener listener)item 的单击事件setOnItemLongListener(OnItemLongPressListener listener)item 的长按事件setOnItemChangedListener(OnItemChangedListener listener)item 的切换事件setOnDragStatusListener(OnDragStatusListener listener)监听图片拖拽状态事件setOnBrowseStatusListener(OnBrowseStatusListener listener)监听图片浏览器状态事件自定义UI 自定义索引UI框架中内置默认索引视图DefaultIndexUI,如要替换索引样式,可继承抽象类IndexUI,并在使用watch(...)方法前,调用下列方法加载自定义的indexUIloadIndexUI(@NonNull IndexUI indexUI)自定义加载进度UI框架中内置默认加载视图DefaultProgressUI,如要替换加载样式,可继承抽象类ProgressUI,并在使用watch(...)方法前,调用下列方法加载自定义的progressUIloadProgressUI(@NonNull ProgressUI progressUI)添加依赖 Gradle Step 1: allprojects { repositories { ... // 如果添加依赖时,报找不到项目时(则项目正在审核),可以添加此句maven地址,如果找到项目,可不必添加 maven { url " } } } Step 2: dependencies { compile 'indi.liyi.view:image-viewer:3.0.1' }Maven indi.liyi.view image-viewer 3.0.1 pom "> dependency> groupId>indi.liyi.viewgroupId> artifactId>image-viewerartifactId> version>3.0.1version> type>pomtype> dependency>使用方法XML 中添加 ImageViewer"> 代码中设置 ImageViewer一共提供两种配置ImageViewer的方法:方法一:imageViewer.overlayStatusBar(false) // ImageViewer 是否会占据 StatusBar 的空间 .imageData(list) // 图片数据 .bindViewGroup(gridview) // 目标 viewGroup,例如类似朋友圈中的九宫格控件 .imageLoader(new PhotoLoader()) // 设置图片加载方式 .playEnterAnim(true) // 是否开启进场动画,默认为true .playExitAnim(true) // 是否开启退场动画,默认为true .duration(true) // 设置进退场动画时间,默认300 .showIndex(true) // 是否显示图片索引,默认为true .loadIndexUI(indexUI) // 自定义索引样式,内置默认样式 .loadProgressUI(progressUI) // 自定义图片加载进度样式,内置默认样式 .watch(position); // 开启浏览此方法是用imageData()配合bindViewGroup()方法,来在内部构建自动构建item的信息模型ViewData,适用于目标ViewGroup类似于朋友圈九宫格控件这类场景,目标ViewGroup如果是ListView这种可重复利用item的控件,则不可用。方法二: imageViewer.overlayStatusBar(false) // ImageViewer 是否会占据 StatusBar 的空间 .viewData(vdList) // 数据源 .imageLoader(new PhotoLoader()) // 设置图片加载方式 .playEnterAnim(true) // 是否开启进场动画,默认为true .playExitAnim(true) // 是否开启退场动画,默认为true .duration(true) // 设置进退场动画时间,默认300 .showIndex(true) // 是否显示图片索引,默认为true .loadIndexUI(indexUI) // 自定义索引样式,内置默认样式 .loadProgressUI(progressUI) // 自定义图片加载进度样式,内置默认样式 .watch(position);此方法直接使用viewData()设置框架所需要的数据源Tip:关于点击系统返回键取消图片浏览如果需要实现点击返回系统返回键关闭浏览,请在Activity中加入以下代码 /** * 监听返回键 * * @param keyCode * @param event * @return */ @Override public boolean onKeyDown(int keyCode, KeyEvent event) { boolean b = imageViewer.onKeyDown(keyCode, event); if (b) { return b; } return super.onKeyDown(keyCode, event); }超巨图解决方案因为可以自定义图片加载方法,在加载图片前可以先压缩图片项目内部目前使用的图片缩放控件为PhotoView,可以将PhotoView用以下控件代替:使用 SubsamplingScaleImageView 代替 PhotoView(推荐)或者使用 BigImageView 代替 PhotoView赞赏如果你感觉 ImageViewer 帮助到了你,可以点右上角 "Star" 支持一下哦!:blush:微信公众号有兴趣的同学可以关注微信公众号「Code满满」或者笔者的个人博客「李益的小站」其他平台简书:李益99CSDN:李益99LICENSECopyright 2017 liyiLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.
2025-04-10Page: « Previous ... 1 2 3 4 5 6 ... Next » (6 pages) Displayed: 101 - 125 of 131 Sort by: relevance | title | downloads | rating | date Show: All Software | Only Freeware Swift Aircrafts HD Screensaver 1.0.1 download by 3D-Screensavers-Download.com This beautifully made HD screensaver is dedicated to all the fans of aviation, showing on your screen a high-quality images of aircraft of different eras, ... View Details Download Scenic Framer 1.01 download by MyNatureInspiration Innovative Windows 10/8.1/8/7 desktop application to visualize your albums of high quality ... running Windows application or as Windows theme with screen saver. Scenic Framer best used with additional display monitors in Windows extended desktop. You can choose a matting board to frame ... type: Shareware ($16.00) categories: photo viewer, photo collage, photo panorama, screen saver, desktop theme, nature photography, tree, flowers, stitched image, matting board, inspiring phrase, multiple monitors, Windows 10/8.1/8/7, video wall or ceiling View Details Download ImgV64 1.86 download by Miller Cy Chan ... arrow keys. This works in window or full screen modes. Free of any malware, spyware, and viruses. ... available on the toolbar. If you want more screen space, you can hide the toolbar and just ... type: Freeware categories: Freeware, Graphics, Windows, Win7, Win8, Win10, Wallpaper, Images, Viewers, Image, Viewer, Screen, Saver, Screensaver, GIF, JPG, BMP, TIF, TGA, PNG, JPEG, WEBP, HEIC, ImgV64, ImageViewer, Editors, File, Format, Conversion, Color, Adustment, Gamma, Con View Details Download RecMaster 2.2 download by Aunbox Software Co.,
2025-04-06Navigation: Home \ Graphic Apps \ Editors \ ImLab for Windows Software Info Best Vista Download periodically updates pricing and software information of ImLab for Windows full version from the publisher, but some information may be out-of-date. You should confirm all information. Software piracy is theft, using crack, warez passwords, patches, serial numbers, registration codes, key generator, keymaker or keygen for ImLab for Windows license key is illegal and prevent future development of ImLab for Windows. Download links are directly from our mirrors or publisher's website, ImLab for Windows torrent files or shared files from rapidshare, yousendit or megaupload are not allowed! Released: January 30, 2010 Filesize: 1.42 MB Platform: Windows XP, Windows Vista, Windows 7 Install Instal And Uninstall Add Your Review or Windows Vista Compatibility Report ImLab for Windows - Releases History Software: ImLab for Windows 2.3.4 Date Released: Jan 30, 2010 Status: New Release Release Notes: * New: Line mode drawing and RGB option for Histogram View. * Changed: improved alpha channel support in several places. * Changed: updated IUP, CD and IM libraries to the latest versions. Check also the History of Changes in IM for fixes in Image Processing functions. Most popular open file in its program in Editors downloads for Vista ImgV64 1.86 download by Miller Cy Chan ... the complexity of a complete paint or thumbnailing program. ImgV64 has many powerful features available, but they ... and just use menus. You can choose to open an image at 100% of its original size, ... type: Freeware categories: Freeware, Graphics, Windows, Win7, Win8, Win10, Wallpaper, Images, Viewers, Image, Viewer, Screen, Saver, Screensaver, GIF, JPG, BMP, TIF, TGA, PNG, JPEG, WEBP, HEIC, ImgV64, ImageViewer, Editors, File, Format, Conversion, Color, Adustment, Gamma, Con View Details Download
2025-04-12