Who knows what Picasa is programmed with?
I am looking for information on how Picasa was built as I would like to create a similar interface for my application. Information can include programming language,UI design, etc. ...
I am looking for information on how Picasa was built as I would like to create a similar interface for my application. Information can include programming language,UI design, etc. ...
I'm using the Picasa Web Albums Data API to access users' photo albums from a WPF application. I've followed the code located here: http://code.google.com/apis/gdata/clientlogin.html I have created a Picasa Web Albums account with a Google Apps (hosted) account. Whenever I tried logging in with my WPF application, I get the "BadAuthen...
I am just trying to get some things to work so I can try some of google app engines java. However I seem to have a problem with something that I can't get a hold of. The java code looks like this: import java.net.URL; import com.google.gdata.client.photos.*; import com.google.gdata.data.photos.*; public class TestPicasa { public stat...
Okay, it seems to be a stupid question, since we have this: http://code.google.com/intl/en/apis/picasaweb/docs/2.0/developers_guide_java.html However, up to the moment, I can only succeed in displaying the thumbnails by using: PhotoEntry photo = //somehow I get the instance photo.getMediaThumbnails().get(0).getUrl() The biggest photo...
Does anyone know if there is a way to get a list of all of the image sizes that picasa is hosting? I've been using google's gdata java library for picasa, and I'm able to get a list of thumbnails ranging in size (3 in all of the cases that I've seen), and the full, original posted image - all from the PhotoEntry object. However, I noti...
Anyone know of SSL / https support for Picasaweb? I have a web site that uses SSL, but trying to display Picasaweb photos is a problem. IE8 keeps complaining with a pop-up "Do you want to view only the webpage content that was delivered securely?" Asking all possible web page users to change their IE8 settings sounds unfriendly (and u...
I'm trying to write a small tool to upload Pictures from Google App Engine to Picasa. Fetching the image works, but when i try to upload it i get the error "TypeError: stat() argument 1 must be (encoded string without NULL bytes), not str" The Code basically looks like this: def getfile(url): result = urlfetch.fetch(url) if re...
The Web album http://picasaweb.google.com has only the option to browse images from disk. What if I do not have images/photos on disk and I don't want to download image. If I know the URL of the image, can I avoid the round-trip of downloading and then uploading back to "Picasa web album" ?? ...
I am Calling fetchFeedWithURL to get Picasa Album metadata for the passed Albumn NSURL *albumURL = [GDataServiceGooglePhotos photoFeedURLForUserID:service albumID:albumnID albumName:nil photoID:nil kind:nil access:nil]; [service fetchFeedWithURL:albumURL delegate:self didFinishSelector:@selector(DoneGettingOneAlbumn:finishedW...
I'm using the Python client library for the Picasa Web Albums API to upload some JPEG images to an album. But the photos appear very compressed once uploaded. In Picasa 3.6 there is an option to upload images in their original quality without any compression, but is there are similar option I can use from within the API? This is some of...
Hi, I'm trying to login to a Google Account for request Picassa Web photos with AJAX. That's the code: xmlhttp=new XMLHttpRequest(); xmlhttp.open("POST","https://www.google.com/accounts/Login",true); xmlhttp.send("accountType=HOSTED_OR_GOOGLE&Email=...&Passwd=...&service=lh2&source=prova"); document.getElementById('prova').innerHTML=xml...
I am using PHP/MYSQL. I want to create a image gallery for sorting images. User will drag and drop images to sort and organize their images. Just like picassa do this. I have created a page using using jQuery UI sortable plug-in: http://jqueryui.com/demos/sortable/#display-grid Demo Page: http://jsbin.com/oqani/9/ Its dragging and d...
I want to add a slide show of pictures from one my photo albums from flick/picasa.Is it possible to fetch the images javascriptically on the page and then show them using jQuery(that i can do :) ) ...
Hi All, I want to download picassa album or photos using a program. For that i should have a download url for picassa. Please share your ideas. Thanks Lalit ...
how can I modify the embedded photo gallery slideshow from Google's Picasa to auto repeat the pictures, i.e. play them over and over again? This is the code Picasa gives me for embedding in a website: <embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="400" height="267" flashvars="...
Hello all, I'm creating an offline-capable IPhone app for showing pictures on picasa. It was pretty simple to use JQTouch and Google Data API (via JSONP), so I was able to show the albums and thumbnails in 3 hours, however I want that data to be cached, and for that I'm going to use the HTML 5 Application Cache (via xxx.manifest file). ...
Hello all I am confused in deciding the dimensions for a background image for my website. I am creating a collage like image in picasa and it defines the image dimensions using aspect ratios. If I want to create an image of 2048 x 1800, what aspect ratio should I use? ...
Hi , I an trying to fetch photos from picasa album in android , i have used following link as a reference http://gdata-java-client.googlecode.com/svn/tags/2.2.1-alpha/sample/picasa/picasa-atom-android-sample/instructions.html But in the above example i think user can only access ALBUMS , what i want to access photos also , which...
Hi everyone. I'm about to write an simple plugin for Total Commander. I need to interact with Picasa service. I goggled for a while and found: 1) gdata-cpp-util (kind of a wrapper for libcurl and libxml) http://code.google.com/p/gdata-cpp-util/ 2) use gdata-java-client for Google Data transmitting and interact with c++ code via JNI ht...
Is there more comprehensive sample of creating Google App Engine App using GData Phyton Library to interact with Picasa Web Album, other than google guide from GAE here: http://code.google.com/apis/picasaweb/docs/1.0/developers_guide_python.html Thanks Guys ...