Main > Free Download Search >

Free cheetah pictures software for linux

cheetah pictures

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 485
Cheetah 2.0 RC2

Cheetah 2.0 RC2


Cheetah is a Python-powered template engine and code generator. more>> <<less
Download (0.16MB)
Added: 2006-01-15 License: MIT/X Consortium License Price:
1412 downloads
View Picture 1.7

View Picture 1.7


View Picture project is an SDL-based image viewer for Linux and FreeBSD that supports slideshows, fullscreen, zoom. more>>
View Picture project is an SDL-based image viewer for Linux and FreeBSD that supports slideshows, fullscreen, zoom, and arbitrary movement through the image list.
Main features:
- HTTP updated to 1.1
- Only hide cursor when fullscreen
- Fixed image count estimate
- configure-time X prefix
- fixed potential buffer overflow issues
<<less
Download (0.11MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
877 downloads
Cheetah web browser 0.10

Cheetah web browser 0.10


Cheetah web browser has been started to create a fully functional. more>> The cheetah web browser is a project that has been started to create a fully functional, light-weight, bloat-free web browser for Linux (and other free unix clones) that is not dependant on KDE, GNOME or Mozilla.
Why another web browser?
There are a lot of web browsers available for Unix and all of them that I have tried are great. However, I have yet to find one that truly satisfies my needs.
This is what I require in a web browser:
* It must not require another more developed web browser, such as mozilla, to operate. It can certainly use code from another web browser (providing the applications authors permit that), but the code must be included natively in its source, or in a shared library that comes with the browser. For example, I do not want to have mozilla installed to use my browser. I am using my browser not mozilla.
* It must not depend on an entire desktop suite. For example, if I use icewm I should not have to install kde to use my web browser.
* It must be extremely fast and provide an enjoyable browsing experience (duh).
* It must provide only the ability to surf the internet and download files through http and ftp. I do not want my web browser to provide the means to send/receive e-mail, compose web pages, chat on irc etcetera. I have other programs to do that.
When will Cheetah be usable?
I dont have a roadmap layed out yet. I wont have one for awhile. It all depends upon how many people are willing and have the time to contribute.
<<less
Download (184KB)
Added: 2009-04-20 License: Freeware Price:
186 downloads
Zenith Picture Gallery 0.9.4

Zenith Picture Gallery 0.9.4


Zenith Picture Gallery is a feature-rich picture gallery that organizes uploaded images into searchable categories. more>>
Zenith Picture Gallery is a feature-rich picture gallery that organizes uploaded images into searchable categories, creates thumbnails, and stores individual statistics for each one.
Other features of Zenith Picture Gallery include downloadable categories and sub-categories, user accounts and profiles, batch adding via FTP and batch deleting, user comments and ratings, the ability to add languages and skins, the option to rebuild thumbnails, an IP blacklist, and a comprehensive admin control panel that provides access to a great deal of settings and formatting options.
Main features:
- Everything is done from the browser, from installation to configuration.
- Searcheable records by filters.
- Auto-resizing/resampling of images to thumbnails.
- Easy skinning.
- Categories and sub-categories with display permission options.
- User accounts, user profiles, control panels and user types.
- Easy management of languages.
- Blacklist containing IPs of troublesome users.
- Admin CP allows you to define countless settings and formatting options.
- A notice appears in the nav bar to admins when there are pictures, comments or users awaiting approval.
- Batch add pictures via FTP.
- Batch delete pictures.
- Rebuild thumbnails tool.
- Search result and display page addresses are linkable.
- Gallery can be turned on/off.
- Adding pictures can be disabled for guests.
- Sort pictures by Last comments, Most viewed, Top rated.
- ZIP and download pictures.
- User accounts, profiles and pictures can all be managed in the Admin CP.
- Option to receive an email when a picture is submitted.
- 21. Option to allow only registered users to view the gallery.
- 22. Option to set a timezone offset for picture submission dates.
- Categories are mapped to directories in the file structure.
- Users can choose a skin from the ones uploaded.
- Forgot my Password and Resend Activation Email tools.
- Admins can define custom fields for pictures.
- EXIF support.
<<less
Download (0.52MB)
Added: 2007-07-09 License: Other/Proprietary License with Source Price:
902 downloads
pyctures 0.20

pyctures 0.20


pyctures is a small web gallery written in Python that uses the web.py framework. more>>
pyctures is a small web gallery written in Python that uses the web.py framework. It does not use any database and stores all the necessary data in the filesystem.
pyctures is published under the BOLA (Public Domain), so you can run the software anywhere, and do whatever you want with it.
Installation:
The installation procedure depends on the HTTP server youre using. What follows is a list of procedures for some common HTTP servers. If you use pyctures with something else, please let me know so I can add it here.
After youve completed the install, read the "Administration" file to learn how to manage your gallery.
Common procedure
1. Copy the "website" directory to a suitable place where you want to install
pyctures. It does not have to be inside your website, but has to be
readable by your webservers user.
2. Create a "config.py" file based on the "config.py.sample" file, and edit it
according to your configuration. A really important setting is the album
path, where all albums will be stored. It can be anywhere you want. Create
an admin user so you can create albums using the web interface.
3. Make sure the album path is writeable by the user who will run the pyctures
application. It usually is your web server user.
4. Install PIL from http://www.pythonware.com/products/pil/. The package name
for most distributions is "python-imaging" or just "imaging".
5. Install cheetah from http://www.cheetahtemplate.org/. The package name for
most distributions is "python-cheetah" or just "cheetah". You need at least
version 2.0-rc5.
No server (stand-alone)
pyctures can be run without any HTTP server by just executing
"./pyctures [PORT]" directly on the website directory. Its useful for
testing and small sites. I recommend that you test everything works this way
before integrating it into a webserver.
lighttpd
First of all, install "flup", from http://www.saddi.com/software/flup/.
Gentoo: Its not in portage, it sucks. Check
http://bugs.gentoo.org/show_bug.cgi?id=100784
Debian: apt-get install python-flup
Now, lets suppose youve installed pyctures in the "/var/www/pyctures"
directory, and want to publish it under the "/pics/" directory.
You need to add the following to /etc/lighttpd/mod_fastcgi.conf (or just
/etc/lighttpd/lighttpd.conf if you dont have the other file):
---------- 8< ---------- 8< ---------- 8< ---------- 8< ----------
fastcgi.server = (
"/pics" => ((
"socket" => "/tmp/fastcgi-pics.socket",
"max-procs" => 1,
"bin-path" => "/var/www/pyctures/pyctures"
))
)
---------- 8< ---------- 8< ---------- 8< ---------- 8< ----------
This is enough, but be aware that "http://mysite/pics" (note the missing
"/" at the end) will *not* be redirected to pyctures.
If you want to be able to refer to your pyctures root both as
"http://mysite/pics/" and "http://mysite/pics", you need to add the
following in the same file as before:
---------- 8< ---------- 8< ---------- 8< ---------- 8< ----------
url.redirect = (
"^/pics$" => "/pics/"
)
---------- 8< ---------- 8< ---------- 8< ---------- 8< ----------
And then create an empty file in your document root called "gallery",
otherwise lighttpd will think the path does not exist and return 404 before
doing the redirection.
Enhancements:
- This version implemented pagination, IE support, and automatic thumbnail regeneration on config changes.
- It also improved performance considerably, reduced the memory footprint, added Apache installation instructions, and included several other minor improvements.
<<less
Download (0.076MB)
Added: 2007-01-09 License: Public Domain Price:
1019 downloads
Instant Picture Creator 0.1

Instant Picture Creator 0.1


Instant Picture Creator is an Image Wrapper written in PHP to produce images on demand for websites. more>>
Instant Picture Creator is an Image Wrapper written in PHP to produce images on demand for websites. It uses filters, so you can manipulate images in every way by adding own filters. Currently it comes with two basic filters for Resizing images (Example: thumbnails) and Manipulation image colour palette. You can combine filters (like ‘Resize-square-100/Palette-grey’) and it is possible to define Shortcuts (like ‘greythumb’).

Filtered images can be cached, so it is fast and only need some more server time at the first image request.

It doesn’t need a special backend interface, you can manipulate images by a request like http://yourserver.com/picture.png?filter=thumbnail (you don’t need to do it by yourself, it will be done by the first request anyway). In this way you can integrate this mechanism very easy in running websites. You can use it only for one (or more) folder (with images) or you can you use Instant Picture Creator in general for all images on your website. Of cause you also can use it in your backends to prepare thumbnails for uploaded images, etc ...

Currently it supports GIF, PNG and JPEG image types.
<<less
Download (0.009MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1077 downloads
The Picture Transfer Protocol library 1.1.0

The Picture Transfer Protocol library 1.1.0


libptp2 is a library used to communicate with PTP devices like still imaging cameras or MP3 players (KODAK mc3). more>>
libptp2 is a library used to communicate with PTP devices like still imaging cameras or MP3 players (KODAK mc3).
You can download files or tweak camera properties using ptpcam program boundled with libptp2.
Supported Cameras
The list of cameras implementing PTP is constantly growing. Most (if not all) USB still cameras designed after 2002 are supporting PTP. Below is the list of vendors implementing PTP in their cameras:
- Kodak
- HP
- Nikon
- Canon
- Panasonic
- Olympus
- Konica
- Minolta
- Fuji
- Ricoh
- Sony
More are comming...
Please note that if your camera is supporting PTP it does not mean that it is capable of performing all PTP operations (like trigerring capture, uploading files or tweaking properties). Sony cameras are good example of poor PTP implementation where the only thing you can do is downloading files. Sony even breaks the USB specification assigning all its cameras the same product/vendor IDs so dont buy Sony if you want to stay out of problems.
Currently most PTP features are supported. Uploading/downloading files, taking pictures and setting camera properties is supported as long as your camera supports it. However there are many Vendor Extensions that are not supported.
For example Canon uses some proprietary extension operations to take pictures (entering capture mode, extending lens and so on), Nikon introduces proprietary PTP properties.
Unfortunately I have access to couple of Kodak cameras only so to help support extension features you may send me a patch or donate/lend the camera.
Enhancements:
- A number of bugs were fixed, including leaving the camera in an unpredictable state when an I/O error occurs.
- The projects own reimplementation of the old libusb interface (IOCTL_USB_BULK) is used instead of the new URB interface, which is 20% to 50% slower and sometime leads to I/O errors.
- File time preservation across download was added.
- Better capture support was added.
- A bug that caused files over 2MB to be corrupted while downloading was fixed.
- The --loop-capture feature was added.
- Configure errors and parralel build with make -j were fixed.
<<less
Download (0.35MB)
Added: 2005-09-09 License: GPL (GNU General Public License) Price:
1526 downloads
Infins Picture Gallery 0.6.2

Infins Picture Gallery 0.6.2


Infins Picture Gallery (IPG) is an image gallery system for Web sites. more>>
Infins Picture Gallery (IPG) is an image gallery system for Web sites that is easy to install, reads all files from a directory set in the config file.

Infins Picture Gallery resizes and caches images dynamically, counts the number of times an image is viewed, and allows visitors to comment on and vote for your images.

You can optionaly provide additional text for each image.
<<less
Download (0.040MB)
Added: 2006-03-30 License: GPL (GNU General Public License) Price:
1304 downloads
Picture Downloader 0.2b

Picture Downloader 0.2b


Picture Downloader is an app suitable for downloading pictures from websites. more>>
Picture Downloader is an app suitable for downloading pictures from websites. Picture Downloader as the name implies is an application written in C-Sharp and Gtk-Sharp made to automate the process of downloading images from websites, Perfect for TGPs.
Right now Picture Downloader is in a very early stage of development , this means bugs are still there and some features are on their way.
Main features:
- Scan HTML code to extract links to images.
- Save pictures to a desired directory.
- Filter type of pictures (jpg, jpeg, gif, png).
- Can download from secure sites (.htacces, .htpasswd).
<<less
Download (0.011MB)
Added: 2005-07-27 License: GPL (GNU General Public License) Price:
894 downloads
dvupicts 1.0

dvupicts 1.0


dvupicts is a program that allows the user to easily organize their digital pictures. more>>
dvupicts is a program that allows the user to easily organize their digital pictures.

dvupicts lets you download the pictures from the camera memory card, view them and last select album to upload to you gallery (.sf.net) site.

Simple shell script that uses "dialog" to:

1 download picts from media cards (mmc/compact flash/sd ...)
2 view from a picts-dir (~/pictures/) with "qiv" or any other command-line able image viewer
3 upload to you "gallery" site
<<less
Download (0.006MB)
Added: 2007-01-11 License: GPL (GNU General Public License) Price:
1016 downloads
Cheese 0.1.3

Cheese 0.1.3


Cheese is a cheesy program to take pictures and videos from your web cam. more>>
Cheese is a cheesy program to take pictures and videos from your web cam. The project also provides some graphical effects in order to please the users play instinct. Furthermore some integration work will be done to include it in some other programs and services.

<<less
Download (0.71MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
844 downloads
Simple Picture Gallery Manager 1.4.5

Simple Picture Gallery Manager 1.4.5


SPGM is a PHP script that displays picture galleries on the web. more>>
SPGM is a PHP script that displays picture galleries on the web. It is intended to provide a very simple way to set up online photo albums: creating directories, filling them with pictures and uploading to your website... That is what its all about !
Several cool features are also included, while keeping in mind that the program aims to be as lightweight, simple and portable as possible. Dont expect automatic thumbnail generation, advanced search functions, nor per-gallery full statistics then.
SPGM generates XHTML 1.0 Strict compliant code and makes extensive use of CSS stylesheets to render galleries. It only requires PHP version 4 or higher and does not rely on image manipulation libraries (like GD), or any database system whatsoever.
Main features:
- gallery/picture captioning
- unlimited sub-galleries
- per gallery complete configuration (inheritance supported)
- several sort options for both pictures and galleries
- random/fixed thumbnails used for gallery previews
- new pictures highlighting
- hidden galleries
- EXIF support
- slideshow mode
- easy integration into websites
- multi-language support (29 languages are currently provided)
- flavors (themes) available for use
Enhancements:
- This is a maintenance release that provides various bugfixes and small features.
- People who want to upgrade from previous versions should pay attention to the release notes, as a few configuration files must be updated as well.
<<less
Download (0.10MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1059 downloads
Picture of the Day PHP Script 1.0

Picture of the Day PHP Script 1.0


Picture of the Day PHP Script shows daily changing pictures. more>>
Picture of the Day PHP Script shows daily changing pictures. Each Web page can contain several pictures. Each picture is taken in random order from its own set of directories. An unlimited number of images and directories may be used. Picture of the Day PHP Script doesnt use a database.
Main features:
- Can display several images per page
- Each image is taken from its own set of directories
- Image is randomly taken from directories
- Images are changed daily
- Unlimited number of images
- Unlimited number of directories
- Unlimited number of images per page
- Compatible with Unix and Windows
- Doesnt use database.
<<less
Download (0.013MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1294 downloads
Eyelash Gallery 2007-1

Eyelash Gallery 2007-1


Eyelash is a Flash powered picture gallery that creates a portfolio of pictures from a php-based XML. more>>
Eyelash Gallery project is a Flash powered picture gallery that creates a portfolio of pictures from a php-based XML, taking input from a list of images in the images directory.
To work properly eyelash will require you to make sure you have basic knowledge of the following words : PHP, FTP, JPG, Flash.
Enhancements:
- Support for multiple galleries was added.
- Image description administration was enhanced with a preview of the image thumbnail, which makes it easier to know which image relates to which description file.
<<less
Download (MB)
Added: 2007-01-12 License: Free for non-commercial use Price:
1020 downloads
Photo resize 0.1

Photo resize 0.1


Photo resize is a service menu for KDE that changes the selected pictures to a chosen size. more>>
Photo resize is a service menu for KDE that changes the selected pictures to the chosen size (550x550px, 500x500px, 450x450px,200x200px,150x150px).

The geometry will be hold. The script will size the pictures to their longer side.

Attention: The pictures will be overwritten!!

<<less
Download (MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
843 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5