How to load image from a url without image extension - android-studio

The following image url
https://via.placeholder.com/150/771796
Its working in browser, but from picasso and glide i am not able to load the image into my imagview.

You have to resize image in this size load failed.

Related

How to get AmlDatastore image url from Azure

I'm trying to use auto ML to train an object detection model. I have all of my images uploaded to azure and am trying to create my jsonl file for the tabular dataset. I'm using this document: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-auto-train-image-models
This is their example of an image url: AmlDatastore://image_data/Image_01.png
How do I get that url for my images in my datastore? When I view the image in the datastore, it shows me an https url. I tried using that one but I get an error that the file is not found. I've also tried making an AmlDatastore url with a path to my image with no luck there either.

Firebase storage - resize image extension

i wanted to resize my images, so i installed this resize image extension.
Problem is it only resize image if i upload it on firebase website. Problem is if i upload it through nodejs or flutter, it does not resize..
Do i need to set some metadata or what? Does it only work for firebase website? Or is it possible to somehow trigger extension?
_reference.putData(
await pickedImage.readAsBytes(),
SettableMetadata(contentType: 'image/jpg'),
); ```

Glide dont load image from document

i have external local database and i have to save image into database,
image come from camera and gallery and image drawable
glide load image from imagedrawble but cant load image from camera or gallery
and i save uri these images
glide can load this uri from image drawable
content://media/external/images/media/772718
but cant load this uri from camera or gallery
content://com.android.providers.media.documents/document/image%3A772711
i load image this way
Uri uri = Uri.parse(modelInsertInfo.getImage_src());
Log.d("LOG30",uri.toString());
Glide.with(this).load(uri).into(imgDetail);
You can try obtaining path from your uri object and pass it to Glide, check the code below :
Glide.with(this).load(uri.getPath()).into(imgDetail); // get path from Uri and pass it to glide.

Image is not loaded in MVC5 JQuery during initial Load requested via IIS

1.When pointing the URL as "http:/servername/virtualdirectory" and for example i am setting image path as ../Content/Images/xx.png using jquery in js file then the images is not loaded
2.When pointing the URL as "http:/servername/virtualdirectory/controllername/action" and for example i am setting image path as ../Content/Images/xx.png using jQuery in js file then the Images is loaded.
Questions is why the image is not loaded during IIS request from routeconfig.cs ie 'http:/servername/virtualdirectory' in MVC5
Try using <img src="~/Content/Images/xx.png"> in your Razor syntax. This will generate a correct path to your image.

AS3 - URLRequest not working

My flash SWF needs to load "photo.jpg" using URLRequest but in vain. Heres how I am doing it
imLoader = new Loader();
imLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
imLoader.load(new URLRequest("photo.jpg"));
The SWF and photo are both located in the same directory on my localhost server. When i render it in the browser, photo doesn't load. But when i do it manually by simply opening the SWF, photo loads up properly.
Is it something related to crossdomain or what is the problem?
The path is relative to the HTML document. So if your image and SWF are not in the same directory as the HTML you need to provide a path (absolute or relative to the HTML).
So if your SWF and image are in 'media' directory you would need:
imLoader.load(new URLRequest("media/photo.jpg"));
//or
imLoader.load(new URLRequest("/media/photo.jpg"));
//or (if SWF and image are on different server)
imLoader.load(new URLRequest("http://www.domain.com/media/photo.jpg"));

Resources