Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding image to project description in google code

Tags:

google-code

I want to update a background image in google code projects.I searched their wiki, it talks about pointing image to an external world.Is there anyway we can upload the image to google code and provide a link?

like image 304
UVM Avatar asked Aug 04 '11 10:08

UVM


People also ask

Can Google read text in images?

Optical character recognition (OCR) is a technology that extracts text from images. It scans GIF, JPG, PNG, and TIFF images. If you turn it on, the extracted text is then subject to any content compliance or objectionable content rules you set up for Gmail messages.

Can Google crawl images?

Google will still crawl your page and see the image, but will display a thumbnail image generated at crawl time in search results. This opt-out is possible at any time, and does not require re-processing of a website's images. This behavior is not considered image cloaking and will not result in manual actions.

How do I use an image from another project in GCP?

Granting access to imagesGo to the IAM page in the Google Cloud console of the project that needs access to private images owned by another project. If prompted, select your project from the list. Remember to select the project that needs access to images stored in another project.


2 Answers

I got the solution.First you need to upload the image to 'Download' area.After that, give the image url like this.

<img src="http://yourgoogleproject.googlecode.com/files/name of your image.PNG" alt="Logo"/> You have to paste the above code inside apostrophe(') and end with apostrophe and can paste this in project description of your project summary tab.(I have just added here, in my case)

The file uploaded will go under 'files' folder of your project automatically.

like image 118
UVM Avatar answered Sep 21 '22 00:09

UVM


This answer is no longer correct. Google Code removed the downloads option in May 2013, due to misuse. You can, as they suggest, move your files to Google Drive and link to them from there, which is fine for project downloads, but for items such as images in wiki pages or the project home page, I recommend checking the images into your source repository and linking to them. For example, ig you use a mercurial repository and your files are checked into docs/images, then:

http://yourproject.googlecode.com/hg/yourproject/docs/images/logo.png

should work.

like image 21
DaveParillo Avatar answered Sep 22 '22 00:09

DaveParillo