|
I need to make a file format for my software. The data is basic key/value pairs and images. The options are:
1) One XML file that has CDATA tag with binary encoded image files or image files encoded in a RGBRGBRGB or RGBARGBARGBA format.
2) One XML file...
Started by Memb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When using a single XML file....
In general I would prefer the zipped option as the file.
Using the Open Packaging easily roll your own version of such a format .
Uses for their files (Excel, Word, Powerpoint, etc) and it's basically 2).
|
|
Hi everyone,
I am writing a simple application that let user upload images. After the upload the user can tag them or remove them.
Nothing fancy nothing special.
So I figured out how to upload the files and save them once the files are uploaded. I am ...
Started by TRF on
, 7 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Since you are using two tomcat applications, your best bet may... .
This will allow you to store the image just about anywhere.
Definitely don't store the images in the database, but you will want to store the image path in the database.
|
|
How can multiple image TIFF files be converted to JPEG files in a batch manner?
Update 1 : convert on Linux (part of ImageMagick ) as suggested by Miss Cellanie and glallen worked. It was straightforward. I downloaded the ISO image of the netbook version...
Started by Peter Mortensen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
There's probably a slightly more elegant way, but this should do it for you:
for FILE in $(ls *.tif); do \ for I in R G B; do \ convert -channel $I -separate -format jpg $FILE $FILE-$I.jpg ; \ done ; \ done to run this in the directory....
|
Ask your Facebook Friends
|
Hi,
I am thinking to save server load, i could load common javascript files (jquery src) and maybe certain images from websites like Google (which are almost always never down, and always pretty fast, maybe faster than my server).
Will it save much load...
Started by chris on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Things in principle:
Serving up static resources (.htm files, image files, etc) rarely even make a server image hosted on google are scoured from other websites, the images may be copyrighted, causing some but serve....
|
|
I have program that saves unique images that are related to unique database fields to database as binary fields or save in folders as image files?
Started by newbie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If not, better save the images as files and organize meta data and path.
Or something like Amazon S3.
|
|
I am building an ASP.Net C# web application that will be using lots of sound files and image files. Considering performance, would it be best to store all files in SQL as image data type and retrieve from the database or store/archive the hard file on...
Started by Jukeman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Rather than the DB and places on the file system You don't have to worry about files being moved without files Storing as a file with a path in the DB:
Slightly faster access (we'll be quantifying it - it looks like a new ....
|
|
How can we save image files (types such as jpg or png) in C#?
Started by Hamzad on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Img.Save(String, ImageFormat); //Saves this image, ImageCodecInfo....
Img.Save(filePath); //Saves this image to the specified file in the specified format.
//Saves this Image to the specified file or stream.
Or overloads...
|
|
How can i delete image files (ex *.gif) that might be in use, by another process in a directory?
Started by strakastroukas on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you can't delete it, you might be able to rename it, but I'm not sure why some locked files can can notify the user of what program has the file locked if another program is using the file()) End Try
You can't delete it, while....
|
|
What is the best way storing binary or image files?
Database System File System Would you please explain , why?
Started by Saiful on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
File systems will handle defragmenting well and retrieving files of Storing binary....
Pros of Storing binary files in file system:
This is what files systems are good at.
Often or not) and making for longer backup times.
|
|
Is there a way (apart from unzipping, and then making an image, manually, step by step) to convert a series of let's say, zip or rar files, to an image file (I'm not choosy as to the type) ?
By series of zip/rar files, I mean a series of archives, all...
Started by ldigas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
To make an image file from the extractedIf we are talking about one archive in several files, then you will find information about regrouping them into one file....
Or this one , seems they are duplicates which should be merged) .
|