Questions tagged [imageurl]

**imageurl** (image URL) relates to the source URL at which an image is located.

imageurl (image URL) is a property or attribute denoting the source URL at which an image is located. This may be specified typically as either an absolute or relative path. ImageUrl may also relate to getter or setter properties within a framework related to this property/attribute.

261 questions
17
votes
3 answers

How to get images to appear in Excel given image url

I'm creating a csv file with one of the columns containing an url of an image (e.g., www.myDomain.com/myImage.jpg). How I can get Excel to render this image?
RayLoveless
  • 19,880
  • 21
  • 76
  • 94
12
votes
2 answers

View pictures in postman

Is it possible to preview images for the Image URL responses in postman? If postman doesnt have such settings, then is there any plugins as such for that? Otherwise, suggest some tool which can help do. This is very much needed for an application…
user12775894
9
votes
4 answers

asp.net check if imageURL exists

I am trying to get a user's thumbnail from another intranet site but some of them do not follow the pre-defined format meaning I would want to load up a default thumbnail instead. Whats the best way to check if an image URL is valid?
sd_dracula
  • 3,796
  • 28
  • 87
  • 158
7
votes
2 answers

Image URL is correct but image not showing

I have a website on GoDaddy. All permissions are set correctly and the image DOES exist. However when the page loads the image for the item selected does not show. Here is my code imagepath = "~/spaimages/" + currentSpaModel.Name.ToString()…
mattgcon
  • 4,768
  • 19
  • 69
  • 117
5
votes
4 answers

How store an image from URL with Active Storage

My question is about: How can i upload an image from URL when i'm using Active Storage. I used the code from other post here in Stackoverflow but passing through the model method, the param which i need to store in my table. The curiously situation…
5
votes
3 answers

Converting image url to bitmap quickly

I need to display the list of images from api in the list page. For that i used two approaches. First Approach: By converting the url to byte array and then converting it into bitmap.Please find the below code.. URL imageUrl = new…
Booshan
  • 97
  • 1
  • 3
  • 11
5
votes
4 answers

Load UIImage from URL in iOS

I am trying to load a UIImage from its URL with completionand placeholder image , but neither the UIImage nor the placeholder UIImage are loaded. Here is my code: NSURL *url = [NSURL…
Ahd Radwan
  • 1,090
  • 4
  • 14
  • 31
4
votes
2 answers

How to prevent tinyMCE from modifying image URLs in rails

I have a problem with tinyMCE and Image URLs in rails. I inserted the image with this URL: http://mydomain.com/fold1/fold2/fold3/2010/name.png and the image is properly inserted. But when I right-click on the image and select insert/edit image,…
nikicc
  • 638
  • 7
  • 15
4
votes
1 answer

Retrieving imageURL from Share Extension

I am trying to get the imageURL the ios share extension uses for the thumbnail generated in the action sheet. I am retrieving the URL fine but cannot seem to figure out how to get the imageURL. Here is how I get the normal URL, if let item =…
Ro4ch
  • 850
  • 8
  • 21
4
votes
1 answer

How to use external urls for product images in Magento2

Need to display images for products without uploading on my server. I need to achieve: Images are uploaded on another server Images to be display on magento2 products Is it possible that we add image URL attribute like: ImageURL1, ImageURL2 and…
Ajay Jha
  • 41
  • 1
  • 3
4
votes
2 answers

Upload image to Azure Blob Storage from URL

Is it possible to have the CloudBlockBlob.UploadFromStreamAsync accept URL for images? I am trying to use the LinkedIn basicprofile api to retrieve the picture URL of the user (already have the URL) and I am trying to maybe download then upload the…
crystyxn
  • 1,411
  • 4
  • 27
  • 59
4
votes
2 answers

Save image url path in DB columns

i am updating name , email in DB of registered user through php form. its working fine. class.usr.php public function update($uname,$email, $tax) { try { $stmt = $this->conn->prepare('UPDATE tbl_users SET userName = ?, userEmail = ? ,…
user7029249
3
votes
2 answers

GridView cannot display image

Sorry for troubling. Im trying to display the selected fields in a asp.net gridview. i can display everything except the "product_img" where i should display the relevant picture in the gridview. The problem is in gridview when i attached image url…
jan
  • 67
  • 1
  • 4
  • 7
3
votes
1 answer

file.png isn't precompiled

I thought I had the assets pipeline figured out, but not any more. I have a stylesheet named clients.css.scss .client { .list_view { width: 650px; height: 500px; overflow: auto; table { width: 650px; border:…
Russ Petersen
  • 765
  • 1
  • 9
  • 29
3
votes
1 answer

Using negative lookahead in RegExp to correctly match image URLs wrapped in [img] tags?

Negative lookahead to match itself in RegExp I want to use a RegExp to match an image url that will have two cases: The first case it is a normal image URL, ending with .png and may contain some query string, at which point the RegExp will match it…
linjunchao
  • 33
  • 3
1
2 3
17 18