Tagged Questions
0
votes
0answers
29 views
I need to download icons once from server and store them on phone for faster reuse
I have an app that I download icon images from my server and then display them along with product information as inApps on iOS devices and I can do it right now but in doing so the scrolling becomes ...
0
votes
1answer
32 views
Storing imagepaths parmanently in android
User can select images from gallery. So I used this
Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
Each time the user selects image ...
0
votes
0answers
40 views
Huge image database - retrieval
I am developing a customized apparel online shop. We are basically allowing the user to configure any part of the shirt/trouser, giving him options in style and color. Our aproach has been to ...
0
votes
2answers
62 views
What is the best way to store large no of images in Android?
I have to store large no of images (around 50,000) through my application & each image has size around 400KB. I want to store all these images in SD card & I can, but I want to do it in better ...
1
vote
1answer
113 views
Invalid parameter number error in Codeigniter
I am working on a process in Codeigniter to take a user-uploaded image (managed using the CI upload library) and insert it into a varbinary(max) field in a SQLServer database. My controller and model ...
0
votes
2answers
553 views
Android: cannot load image to webview from internal storage
For my android app I want to load a html file to webview, this html file will be stored in "data/data/com.myapp/files/index.html". I am able to load it with the associated javascript files but when I ...
1
vote
1answer
259 views
Reading Image from internal memory android gives null pointer exception
I am quite new to android. I want to save image to internal memory and later retrieve the image from internal memory and load it to image view. I have successfully stored the image in internal memory ...
0
votes
0answers
89 views
Reference a file stored in internal memory inside HTML of a webview
I have a webview :
this.webview.loadUrl("file:///android_asset/html/test.html");
in test.html i would like to write this :
<img src="file:///data/data/com.myapp/myimage.jpg" />
I doesn't ...
1
vote
1answer
223 views
HTML5 to display uploaded image untill next one is uploaded?
I'm not sure if I should use HTML5 storage for this or not.
My question is about how I can accomplish the following:
Think of a wall in a museum with an empty frame. I want the user to upload an ...
2
votes
1answer
52 views
Sensible filenaming in Amazon S3
I'm working on a website which is starting to generate a large volume of user-uploaded photos, which are then converted into multi thumbnails of different sizes and stored. So far, these have been ...
4
votes
1answer
147 views
Dividing the image into three sizes in PHP
I am actually trying to make an image into three sizes and then storing them in the server folder with different names. I am getting this image data in Base64 encoded format through the mobile client ...
0
votes
2answers
35 views
PHP Locate a stored file by a part of its name
friends.
I need to locate a file, stored in my site while using php and finding it with a part of its name. I cant locate it by its entire name because the php file cannot know its extension. It might ...
0
votes
1answer
70 views
Load offline images stored in iPhone
I have to build an iPhone app that every X days has an online sync with a web service, it downloads X images and saves them into the device.
Then, in offline mode, I have to load the images on a ...
4
votes
2answers
518 views
Storage for millions of images [closed]
I need to prepare a storage for hundreds of millions of images (now I have 70 millions and this number is still growing). Each image has approx. 20kB. Of course I can store them in a filesystem, but ...
1
vote
1answer
2k views
Storing the image in folder with unique name and path in database
I am getting the picture encoded data in the php file through json. My requirement is to store that images in server in one folder provided each image should be assigned a unique name. I am getting ...
1
vote
1answer
153 views
Textview to Image File Android?
I have a TextView. I want to change/convert TextView into an image file and store it on external storage. Is this possible? How?
0
votes
1answer
52 views
Lightweight image storing
I'm trying to program an offline catalog in C#. It displays clickable categories and each category contains clickable items. When clicked, the item comes to foreground with a description and a series ...
0
votes
3answers
96 views
Using version control (SVN) for images
We have images stored in a file system in the following format. So that web applications can have access to those images with url (http://imageserver.domain.com/items/it1/small.jpg) through an http ...
2
votes
1answer
938 views
Android - Why my saved image is not appearing in the default gallery of my phone?
I am trying to save an image from my application to the default gallery of my phone. The code below works perfectly if I have a SD card on the phone. The image saved appears in the phone's gallery and ...
-2
votes
2answers
122 views
How do I save images to my server?
If I have the link I need say
$link_to_image = www.path.com/static/favicon.ico;
and I want to save the .ico to a directory on my server.
My guess is there is one PHP function similar to ...
1
vote
2answers
582 views
How to store large number of images in server for easy retrieval in html page?
Please Try to Understand my curiosity
Suppose there is a web application that has mannny users. Each user can upload hundreds
of images and after logged in to his/her account can see those images ...
3
votes
2answers
815 views
Sqlite C++ Image to Blob wont store nothing
I googled a lot and couldn't find any solution. I'm currently writing myself an
app in Codegear 2007 C++. I'm writing this app for my little kittens, its kinda' a dairy
but I call it KittyBook.
So ...
0
votes
1answer
868 views
Save image to Android internal memory and then send as an Email using Intent
I wrote an app that uses Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES) to find the folder to store images to. I then write the jpg to that folder and then use the ...
0
votes
0answers
188 views
Is it wise to keep image data inside a CouchDB instead of serving it statically?
I am currently developing a small-scale imageboard of sorts, basically a Node.js stack with express on top of a CouchDB. I want to keep the app fingerprint on the server that handles the Node.js stuff ...
0
votes
1answer
282 views
Names of image files on a website: hashes or random strings?
I have read several questions about naming uploaded images, and people usually advise to hash image content for generating unique file name plus auto-preventing storing duplicates. But if two users ...
0
votes
2answers
79 views
Just 3 images per user, do I need to go to the trouble of creating a clever directory structure?
I've read several questions about storing images in a database as opposed to folders on the server, and I've decided to go with folders, but I'm wondering how clever I need to be. I've found a lot of ...
0
votes
2answers
191 views
Storing an image file in an object (without needing the file afterwards)
I've looked everywhere, but can't seem to find a solution to this problem.
I'm making a personal app to store information, and one of the things I would like stored within the DB file is a thumbnail ...
47
votes
3answers
1k views
Save a picture of a signature to a file in Rhodes on Android
I am trying to implement signature capture using Rhodes targeting an Android tab. I have managed to get the canvas and scribble on it. But am unable to save the signature at a desired location. The ...
1
vote
1answer
2k views
loading images from SD card directory in GridView
I've created an app that allows the user to create a photo album(Folder) on External Storage. Now I am trying to retrieve the images from said directory and display them inside a GridView. I'm using ...
3
votes
3answers
366 views
What is the best way to load and cache images in Java?
I have a large collection of over one thousand 16 by 16 pixel tile images that I'll need for a game I'm making in Java.
What would be the best way to store the tiles without exhausting the available ...
11
votes
3answers
760 views
Key-value stores for medium to large values
We have a system that stores (single-digit) millions of images, varying in size from 8KB to 500KB, median around 15KB, average 30KB. The total data set is currently around 100GB. We want to access the ...
1
vote
4answers
494 views
How to save pictures in a safe storage and access them in android?
In my application,I want to download images from an URL and then save them in a safe area in Android device. But I have no idea about storage options in Android. I don't want to use sdcard or another ...
2
votes
1answer
179 views
Storing profile pic of users in database: Small sized images, hence in database?
How to store and retrieve the profile pic image of the users on the server ? In the database or using File System? I heard that storing in DB is preferable for small images. If size would be small ...
2
votes
1answer
2k views
Import picture and save to isolated storage WP7
I am currently working on a project where the user needs to select a image from there photo gallery and import it. Using the following code I am able to import the picture but I have a few questions.
...
1
vote
2answers
266 views
Image storage on different server
I can see that all big sites store the images on a complete different server. What are the benefits of this practice?
0
votes
2answers
218 views
Is this a good method for storing images on the server filesystem?
I am developing a social networking website and need to figure out a simple and intuitive way to store user-uploaded images on the server filesystem, one that will scale well as the site grows.
What ...
0
votes
3answers
122 views
Storing 1000s of thumbnails
I have about 1 million thumbnails that I have on my harddisk and that is really increasing the latency on the disk.
Now how can i store those thumbnails on the harddrive to that improve the ...
1
vote
2answers
332 views
Where to store images in Amazon AWS for use in RDS
I am currently creating a bunch of tables on the MySQL service in Amazon RDS. Several of the tables need to have image links in them. What I am trying to figure out, is where do I put the images? Do ...
0
votes
6answers
189 views
How to store images do not use the resources
I have a C # application and I need to keep in her pictures, but I can not use resources (resx).
Is there then an alternative method?
update:
ANSWER:
My images is static, for this I will use ...
0
votes
2answers
219 views
Help with storing images on a server and what to store in the database with java servlet?
I want to store images related to a particular row in my table,
So my table is called spot,
and each spot can have multiple images,
should i just store the images in a folder on the server and then ...
0
votes
2answers
210 views
Website Photo Gallery
Is there a "standard" way of storing photos on the web, when working with photo galleries?
Is it bad practice to store photos in a mysql database? Should I store the photo in a folder, and store the ...
0
votes
0answers
67 views
DISCUSSION - Uploading and Storing Mass Images [duplicate]
Possible Duplicate:
Storing Images in DB - Yea or Nay?
What do you think are the best practices when storing large amounts of images that users have uploaded?
Similar to that of Facebook ...
6
votes
2answers
4k views
Android device specific camera path issue
I know that my question is a duplicate of this question and this one. But still I have some problems, so don't try to close or downvote my question friends. Please go through the question fully.
In ...
1
vote
1answer
567 views
Where can i store default Image on internal storage in android
For example if i create app like travel guide and i would like to show the attraction place as a list
i'm new to Android. I would like to create a ListView which provide image and some data in each ...
1
vote
1answer
372 views
Database storage engine for images
My application uses a database for (among other things) storing scanned documents. These are usually JPEG images, and mostly just text.
I know it's recommended to use files for images and link to ...
0
votes
2answers
154 views
1
vote
2answers
208 views
iPhone/Android - securing images downloaded by app
I know there are a lot of posts about storing images on disk, both for Android and iPhone. What I would like to know is how to hide these files from user (disable access from both device itself and PC ...
3
votes
0answers
467 views
Cocoa - Save profile image/avatar (png) to mysql database?
Key point here:
This is my first game, which means, I am new to develop iOS games.
My game is using game center.
From what I know, you can sign in game center on different devices, for example sign ...
0
votes
3answers
486 views
What is the most efficient way to store and access images
I am working on a project which has to store tens and thousands of images on a server and let the users access them. I need the most efficient method to store these images and to retrieve them. Also, ...
21
votes
6answers
2k views
where is the best place to save images from users upload
I have a website that shows galleries. Users can upload their own content from the web (by entering a URL) or by uploading a picture from their computer.
I am storing the URL in the database which ...

