I have recently inserted some images into a google data studio report using both image from computer and by url (on a public domain) as graphics to make it more visually appealing.
When we duplicate the report, all of the data sources are ok but the report looses the images. It looses them even if they are hosted on a public web server accessing by https://
When I click on the image, it shows the image url in the property tab, but on clicking the button with the url it asks to upload from computer.
Is there a way to have images in the report and be able to duplicate whilst not loosing the linkage or do i need to replace the images every time.
We have tried
Uploaded image from computer
hosted image on https:// publicly accessible domain
used embeded url object to images on https:// publicly accessible domain
Related
When uploading an image in Netlify CMS, I get a preview image, which however disappears right after a refresh. The image I attached shows the source attribute the preview element uses - it looks like the logic here assumes that the image is already deployed to the same domain (which in turn assumes that the site the CMS manages lives on the same domain as the CMS interface itself). Is there a way to change the base URL just for the preview, e.g. to some kind of https://rawgit/...-like URL. I am looking for a setting that affects only the preview widget behavior and nothing else (where the image is saved, what URL path it adds in the post frontmatter etc).
Thanks in advance for any pointers!
I just added an OpenGraph image to a site I'm working on and using the FB Debugger the info retrieves the correct image, however when sharing the url I still see default images being displayed (there was no specified OG image before). Is there something I'm missing here? The site uses a custom Python based framework and image is served via gzip from an Amazon EC2 instance, if that would affect the output in any way.
The problem is not with your website.
Facebook takes some time to refresh images inside facebook.com even though you can see the changes on Facebook Debug Tool.
In order to view your new image inside Facebook you can do two things:
Manipulate a little the URL you are trying to share, this way
Facebook will fetch the open graph data again.
Just give it some
time, it will be refreshed after a few hours.
There are three way to change your image you need to clear the
1) Manually clear facebook catch using the https://developers.facebook.com/tools/debug/ facebook tool
2) Add version code end of the url like ?v=1
3) write the GraphAPI code from when you click on the share button it will clear the facebook page cache.
I am using parse.com as a data storage backend for one of my web app.
I want to upload images on parse.com and I was successful in uploading images to parse.com and parse is returning a long unique URL for uploaded image as well.
When I tried to open the image using returned URL, image was opened which means upload was successful.
However I am not able to see uploaded images in parse.com file browser. Can someone suggest how to view all uploaded images in file browser?
Thanks
The only way to view these files is to download them and then view them locally. To do this you must do the following.
In the Parse data browser, navigate to the file cell.
Click on the cell, and choose a download location.
Open the file on your local machine.
Note: The file you download won't have an extension so you might have to specify the application you want to open the file. In your case it would be an image viewer.
I am converting an application from my own hosted server to Azure Websites. I use RDLC to create reports, invoices, etc. I use fixed URL's to load images with
(IE: logo = String.Format("file:///{0}{1}", path, "logo" & XXXXXX & ".jpg")
The variable logo is passed via report parameters into the RDLC.
This works fine when my programs run on my on server. HOWEVER, when I use my Azure Storage container URL, the image does not get loaded when my report runs.
When I use a URL from my web site, the image loads properly.
This works: logo = "http://www.resellsolutions.com/images/ReSell-191x72.png"
This does not work:
logo = "http://crmna.blob.core.windows.net/logos/2d66e0fb-d534-434f-9a81-d3f02256e25f_ReSell-191x72.png"
I can load the blob storage URL into a web browser and the image loads fine. It just will not load in the report.
All help is appreciated.
I know why you're running into this issue. I accessed the image through Fiddler and this is the response I got:
If not notice, content-type of the blob is set as application/octet-stream and this is causing the problem. Please change the content-type property of the blob to image/png and that should fix the problem.
I'm developing a JSF application which has an image upload function. I'd like to display the uploaded image. The uploading works fine but when I delete the uploaded picture and upload a new one, the old one is displayed in the browser. I typed the link of the picture in the browser but I sill get the old one. I use the same file name and I would not like to change it. How could I refresh it. (without Javascript). I'm using Glassfish Server. (Redeplyoing the application I get the new picture but it isn't a solution for an online system ;))
Thank you.
Redeplyoing the application I get the new picture
Don't store it in the deploy folder by getRealPath() and consorts. Store it outside the deploy folder.
See also:
Uploaded image only available after refreshing the page