picasa

Retrieve Picasa Image for Upload from Gallery

人走茶凉 提交于 2019-11-27 12:29:33
问题 I am working on an activity and associated tasks that allow users to select an image to use as their profile picture from the Gallery. Once the selection is made the image is uploaded to a web server via its API. I have this working regular images from the gallery. However, if the image selected is from a Picasa Web Album nothing is returned. I have done a lot of debugging and narrowed the problem down to this method. public String getPath(Uri uri) { String[] projection = { MediaStore.Images

Create a Picasa album and upload images to it with PHP and cURL

久未见 提交于 2019-11-27 02:15:20
问题 All of the tutorials I've found for creating Picasa albums and uploading pictures use the Zend Framework which I haven't studied. Is it possible to upload images and create albums using PHP and cURL? My images are stored in the directory e:/images and the image information is stored in a MySQL table like this: SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `picasaimage` ( `id` bigint(1) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,