Questions tagged [loadimage]
179 questions
3
votes
2 answers
How to startActivityForResult on Android 11?
I am loading images into my app using startActivityForResult() by doing something like this:
val intentForLoadingImage = Intent(Intent.ACTION_GET_CONTENT)
intentForLoadingImage.type = "image/*"
if…

Shreemaan Abhishek
- 1,134
- 1
- 7
- 33
3
votes
1 answer
Could not open resource file, pygame error: "FileNotFoundError: No such file or directory."
Import pygame
pygame.init()
BG = pygame.image.load('_pycache_/test_bg.jpg')
def DrawGameWin():
window.blit(BG,(0,0))
pygame.display.update()
DrawGameWin()
user12144855
3
votes
0 answers
How to send multiple images file from express server to the client?
In my back end(build by express) I was storing user image in MongoDB using gridfs. Now for testing purpose I want to check if all the images is loaded or not in the client . By this code below, I was able to fetch one single image:
//…

Kazi
- 1,461
- 3
- 19
- 47
3
votes
2 answers
ios image display from sqlite database
I have saved my image and text into the sqlite3 database by clicking saveInfo button.
- (IBAction)saveInfo:(id)sender {
// Prepare the query string.
NSString *query;
if (self.recordIDToEdit == -1) {
query = [NSString…

Shashwat Tyagi
- 255
- 5
- 15
3
votes
0 answers
Magento 2: loading module related images without creating full theme
I have my own logo images related to my own module which I want to load with module but I don't want to create whole theme to just load images. Is there any way to do that?
user5583935
2
votes
3 answers
Glide FileNotFoundException
سلام عليكم
I want to load image with Glide but I got this error :
java.io.FileNotFoundException: https://via.placeholder.com/600/1e5390
at com.android.okhttp.internal.huc.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:238)
…

Ahmed Mamdouh
- 83
- 7
2
votes
1 answer
How to load multiple images into picture boxes using a loop without repeating code?
I want to use the incrementing of the for loop to access different picture boxes and images in the resource folder. I could type it all out as I have shown below but I would like to "program" it more. (Hope my question makes sense)
private void…

Kyle Warren
- 23
- 5
2
votes
1 answer
Is it possible to edit the url of an image before cache it by SDWebImage?
I am using S3 image url. It contains a secret key part. I am using SDWebImage to load the images. I want to cache the images, but due to the signature change from the S3, I am not able to cache the image(due to signature change all image urls are…

arun joseph
- 77
- 8
2
votes
1 answer
Load first image with any name, solve exception error, copy dropped image to folder
I have a Form that loads its default BgImage from a subfolder at the location of my application.
When the default BackgroundImage is visible, it can be used as a drop area for other common bitmap formats(drag and drop image from Windows…

taraz
- 117
- 2
- 8
2
votes
1 answer
The parameter 'inArray' is coming null. Why?
I'm trying to load an image from a database.
I used this code in my view :
@foreach (var item in ViewBag.Base64String)
{
var base64 = Convert.ToBase64String(item.ImageData);
var imgSrc = String.Format("data:image/jpg;base64,{0}", base64);
…

Saeed Balkani
- 23
- 2
- 4
2
votes
1 answer
Load more than one image in R with load.image() function from "imager" package
I want to load more than one image with load.image() function provided in "imager" package, but i have got an Error with "File not found" message. Could someone please help me in this problem?
I've tried to load the images in the list, and add this…

Bálint Molnár
- 23
- 1
- 7
2
votes
0 answers
Image loaded over saturated (maybe gamut troubles)
We are getting problems loading an image, our trouble is that we are getting over saturated color, let me give you the examples:
We have checked and the image doesn't have ICC Profiles neither exif properties which could be changing the image.
I…

mmadrigal
- 95
- 1
- 8
2
votes
2 answers
startimage() failing with -1 after loadimage() in UEFI while loading efi application from other application
i am trying to load an efi application from another efi application using loadimage and startimage protocols. but loadimage is getting succeeded,startimage failing with return value -1/0xffffffff. it would be very helpful if any one suggest some…

gkreddy
- 23
- 5
2
votes
0 answers
I got ghost image when load an image into imageviewer by click item in listview
Question: How can I remove afterimage?
Detail:
I'm using delphi xe10. I'm making simple imageview app.
Computer specification: I7 6700HQ, Ram16G. Windows10, 64bit.
I set Opendialog, ImageViewer, ListView, Button on the form. Did not change…

randomwalk1225
- 163
- 1
- 1
- 10
2
votes
3 answers
Image not being loaded in Picasso
I am trying to load this Image : http://api.aircountr.com/3UE2c8CtxmzZfRan0hex5uWGkmzl0BWG.jpg
But using picasso it is not being loaded. I have gone through lot of similar questions but didn't find the solution.
Every time I am getting onError()…

Raj Suvariya
- 249
- 1
- 4
- 14