Questions tagged [photoviewer]
37 questions
18
votes
4 answers
How to run Photoviewer.dll in command line
When I run the following code below in a command prompt (as administrator):
"C:\Program Files\Windows Photo Viewer\PhotoViewer.dll" "C:\00012.tif"
it produces error as shown below :
"This file does not have a program associated with it for…

jinsungy
- 10,717
- 24
- 71
- 79
15
votes
4 answers
ArrayIndexOutOfBoundsException in PhotoView + ViewPager
I'm using the PhotoView library, however when using it with viewpager I get an error when zooming.
08-22 17:14:50.096: E/AndroidRuntime(8740): FATAL EXCEPTION: main
08-22 17:14:50.096: E/AndroidRuntime(8740): java.lang.IllegalArgumentException:…
user2675221
11
votes
2 answers
How to use an ui.Image as an ImageProvider data source
I can set a standard flutter image from memory or from a file, but not an ImageProvider as required by the PhotoView framework.
The PhotoView framework accepts an AssetImage as a type of provider but not any of the other ImageProvider types (File…

Yarm
- 1,178
- 4
- 16
- 29
6
votes
2 answers
PhotoViewer not working besides following examples and documentation. Image does not display
After reading all the related post on Stack OverFlow and other sites, including Ionic documentation, I am not able to get this working. I have tried to replicate the same so currently I have:
In app.module.ts
import { PhotoViewer } from…

Fernando Bastos García
- 613
- 2
- 11
- 26
6
votes
0 answers
Ionic - Photo Viewer crashing: 'UIDocumentInteractionController: invalid scheme https.'
I am using the following plugin in Ionic for visualizing an image: @ionic-native/photo-viewer.
When calling the visualization method:
PhotoViewer.show('http://my_site.com/my_image.jpg', 'Optional Title', {share: true});
Everything is working as…

EDJ
- 843
- 3
- 17
- 37
5
votes
0 answers
Animated GIF support in Windows Photo Viewer?
I've been doing a bit of research to find out why Windows 7 won't support animated GIF images in the photo viewer natively.
People have suggested various third-party software (AKA not the built-in windows photo viewer) to solve this shortcoming.…

athairus
- 213
- 1
- 4
- 8
4
votes
0 answers
Full Screen Image Viewer Similar to Google Photos? - Android
Is there an Android plug-in that's similar in functionality to Google Photos, when you click an image and it goes full screen?
Some key functionality too would being able to drag the photo around on screen when it's in full screen mode, and…

Tim Nuwin
- 2,775
- 2
- 29
- 63
3
votes
2 answers
Get path to file currently open in Windows Picture & Fax viewer
I am writing an "add-on" for Windows Picture viewer that will need to send commands to it (like "Show next/previous image") and obtain file path to currently selected image. I managed to implement sending commands via SendMessage, but I don't know…

Seedmanc
- 357
- 1
- 3
- 13
1
vote
1 answer
How to fix Ionic Photo Viewer gradle compiler error?
So I wasted so many hours trying to simply add the photoviewer to my ionic angular app.
The steps seems simple.
$ npm install --save @ionic-native/core
$ npm install com-sarriaroman-photoviewer (this way cause I am using capacitor)
$ npm install…

Nawat Tsinik Dyami
- 39
- 2
1
vote
0 answers
PIL Image display error in Windows 'It appears that the file was moved or renamed'
I have just started using PIL in Python, and tried to open an image. Code below:
def openImage():
PATH = input(f'Enter Path:\n> ')
PATH = PATH.replace('"','')
Image = I.open(PATH)
OPEN = f'Opening image file at {PATH} ..'
…

kxnyshk
- 167
- 2
- 9
1
vote
0 answers
Want to zoom a image without scaling the image
final float viewWidth = getImageViewWidth(mImageView);
final float viewHeight = getImageViewHeight(mImageView);
final int drawableWidth = drawable.getIntrinsicWidth();
final int drawableHeight =…

Mukund Jogi
- 1,329
- 5
- 18
1
vote
1 answer
Photo Viewer iPad & iPhone
I've long been trying to make an image viewer, but really I do not what does not work.
Here's a picture like you should get!
This is UIScrollView. The UIImage add to UIScrollView. When user scroll - image must download to UIImageView. I think we…

Matrosov Oleksandr
- 25,505
- 44
- 151
- 277
1
vote
0 answers
Ionic native photo-viewer can't load image in ionic 3
I am using ionic-photo-viewer (1.1.10 ),when i click on the image,it shows the blank black modal with loader ,cancel and share button but after sometime the loader and the modal was dismissed and it gives me the error message "Error loading image".…

Chinmayee Rout
- 11
- 2
1
vote
1 answer
How to view thumbnail image full screen in Ionic 3?
I have an image uploaded to Firebase storage and I already viewing the images
as a thumbnail.
My question is: I need to click on the image to view it as a full screen?
Note: image source include a variable {{item.name}}
Home.html
…

Mohamed Yahya
- 11
- 1
- 3
1
vote
1 answer
Ionic Photoviewer - how to use?
I am a beginner in Ionic 2 and I would like to know how you use Photoviewer functionnality from Ionic framework. (available here : official website)
It said :
Usage
import { PhotoViewer } from '@ionic-native/photo-viewer';
constructor(private…

Tom CLERC
- 11
- 1
- 5