Tuesday, December 16, 2008

Batch Watermark Creator 6.6




Batch Watermark Creator 6.6 | 
3.48 MB | (Win32, Linux, Mac)

Batch Watermark Creator is a special program what batch adds text or images watermarks to your photos, images and pictures. Nowadays, people like to upload their digital photos and pictures onto the Internet, and share them with their relatives, friends. Many enterprises resort to the Internet to demonstrate and promote their products. However, duplication and dissemination of products' pictures are very easy, and many pictures are spread without authorization. In order to protect these pictures from illegally used by others, the most effective way is to make a watermark in the pictures before upload.

Usually, we resort to specialized picture processing tool to complete the watermark work such as PHTOTSHOP. However, it's really too much work to do if you have a multitude of pictures to watermark, and it's also very inconvenient as you have to know some specialized knowledge. So, for your consideration, as a specialized batch add watermarks software is designed for you.

Key features:
  • Select and process images in batch mode.
  • Provides 40+ graphics formats (JPEG, BMP, TIFF, PCX, PNG, TGA, PBM, PGM, PPM, GIF, VDA, ICB, VST, PIX, WMF, FAX, PSD, PDD, PSP, CUT and PCD etc) and saving into 4 most popular formats.
  • Use the special technologies for smooth text. So the text watermark is comparable with Photoshop.
  • The visible watermark script editor can very easily create watermark template.
  • Supports add text and image watermark to images.
  • Supports watermark tile and fit.
  • Built-in picture editor.
  • Use PNG alpha technologies. The verge of watermarks has no any variedness.
  • You can set up text's font size, color, position etc..
  • Supports multi-template using and management.
  • Automatically Save the Users' settings on exit.
  • Batch resize the processed images.
  • Supports Drag and Drop. You can drag any images in Windows explorer and drop them the main window.
  • Preview pictures before you save.
To download, clik the icon below
click to download

Monday, December 15, 2008

WinRAR 3.80 Final




WinRAR 3.80 Final
1.29 MB | Archive manager | (Win32, Linux, Mac)

WinRAR is a powerful archive manager (Win32, Linux, Mac). RAR files can usually compress content by 8 percent to 15 percent more than ZIP files can. WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives. It can backup your data and reduce size of email attachments, decompress RAR, ZIP and other files downloaded from Internet and create new archives in RAR and ZIP file format.

Features of WinRAR:
Changes in Version 3.80:

1. Added support for ZIP archives containing Unicode file names in UTF-8 format. When creating ZIP archive, WinRAR stores names in Unicode only if they cannot be stored correctly using the current single byte character set.
2. Added decompression support for WinZip AES encrypted ZIP archives.
3. Improved Unicode support for RAR and ZIP archive names.
4. "Ask before overwrite" and "Skip existing files" update modes are now available in archiving dialog. They allow to specify WinRAR behavior when updating already existing files in archive. Unlike already available "Fresh existing files only" and "Add and update files", these new modes ignore file date and compare only file names.


Command line equivalents of these modes are:
a) switch -o enables "Ask before overwrite" archiving mode;
b) switch -o- enables "Skip existing files" archiving mode;
c) switch -o+ enables "Overwrite all" mode (default for archiving).


5. New "Add to context menu" option in "Profile parameters" dialog. If this option is on, the profile name will be displayed in Explorer context menus allowing to activate a profile from context menu.
6. New -cp switch allows to select a compression profile in command line mode. It is supported only by GUI WinRAR.exe, not by rar.exe.
7. New "Options" page of archiving dialog contains the group of settings modifying the behavior of "Delete files after archiving" option from "General" page:
a) Delete files. Delete files normally like in previous WinRAR versions.
b) Move files to Recycle Bin. Deleted files are placed to Recycle Bin.
Command line equivalent of this option is -dr switch.
c) Wipe files. Before deleting file data are overwritten by zero bytes to prevent recovery of deleted files.
Command line equivalent of this option is -dw switch.


All these options have an effect only if "Delete files after archiving" is on. You can enable any of these options in the default compression profile to change the default behavior of "Delete files after archiving".

8. WinRAR "Extraction path and options" dialog is now resizable. You can use the mouse to drag its border to the desired size and provide more space for folder tree pane. WinRAR will store new dimensions of this dialog.
9. New "Update" SFX script command and "Update mode" group of options in "Update" page of "Advanced SFX options" dialog. These command and options allow to check time and implement file time based updating;
10. SFX script "Shortcut" command and "Add shortcut..." command in "Advanced SFX options" dialog now allow to specify an icon file containing an icon associated with shortcut.
11. New "Wipe temporary files" option in "Settings/Security" dialog provides more secure, though slower, way to delete temporary WinRAR files.
12. WinRAR and RAR display the total progress bar when unpacking a multivolume RAR archive if all volumes are present in the same folder.
13. WinRAR and RAR automatically expand names of environment variables in list files. For example, a list file can contain lines like:

%windir%\*.exe
%USERPROFILE%\Desktop


This feature is available only in Windows RAR version.

14. Added support of TAR archives with non-zero "extra field" data.
15. Added support of TAR archives, which does not contain the end of archive entry consisting of 512 zero bytes.
16. Improved Unicode support when dragging files from WinRAR window.
17. Shift+Tab key combination can be used in main WinRAR window to switch the input focus between interface elements (files, comment, tree, address) in reverse order. In previous versions Shift+Tab used the same order as Tab.
18. Corrected a possible WinRAR crash when opening truncated UDF ISO files.


Click download icon below to download the file:
Click the icon to download

Saturday, December 13, 2008

Java Servlet and JavaServer Pages


Java Servlet
The Java Servlet API allows a software developer to add dynamic content to a Web server using the Java platform. The generated content is commonly HTML, but may be other data such as XML. Servlets are the Java counterpart to non-Java dynamic Web content technologies such as PHP, CGI and ASP.NET. Servlets can maintain state across many server transactions by using HTTP cookies, session variables or URL rewriting.
A Servlet is an object that receives a request and generates a response based on that request. The basic servlet package defines Java objects to represent servlet requests and responses, as well as objects to reflect the servlet's configuration parameters and execution environment. The package javax.servlet.http defines HTTP-specific subclasses of the generic servlet elements, including session management objects that track multiple requests and responses between the Web server and a client. Servlets may be packaged in a WAR file as a Web application.
Servlets can be generated automatically by JavaServer Pages (JSP) compiler, or alternately by template engines such as WebMacro. Often servlets are used in conjunction with JSPs in a pattern called "Model 2", which is a flavor of the model-view-controller pattern.

JavaServer Pages (JSP)
JavaServer Pages (JSP) is a Java technology that allows software developers to dynamically generate HTML, XML or other types of documents in response to a Web client request. The technology allows Java code and certain pre-defined actions to be embedded into static content.
The JSP syntax adds additional XML-like tags, called JSP actions, to be used to invoke built-in functionality. Additionally, the technology allows for the creation of JSP tag libraries that act as extensions to the standard HTML or XML tags. Tag libraries provide a platform independent way of extending the capabilities of a Web server.
JSPs are compiled into Java Servlets by a JSP compiler. A JSP compiler may generate a servlet in Java code that is then compiled by the Java compiler, or it may generate byte code for the servlet directly. JSPs can also be interpreted on-the-fly, reducing the time taken to reload changes.

JSP and Servlets
Architecturally, JSP may be viewed as a high-level abstraction of servlets that is implemented as an extension of the Servlet 2.1 API. Both servlets and JSPs were originally developed at Sun Microsystems. Starting with version 1.2 of the JSP specification, JavaServer Pages have been developed under the Java Community Process. JSR 53 defines both the JSP 1.2 and Servlet 2.3 specifications and JSR 152 defines the JSP 2.0 specification. As of May 2006 the JSP 2.1 specification has been released under JSR 245 as part of Java EE 5.

Here I've share some note about Servlet and JavaServer Pages(JSP). You can download it learn about servlet and JSP by yourselft. That note will teach you step-by-step about to use and learn servlet and JSP.. To download it, just click thedownload icon below..happy download..

click to download the note

Thursday, December 11, 2008

Macromedia FreeHand


Macromedia FreeHand is a computer application for creating two-dimensional vector graphics (use of geometrical primitives such as points, lines, curves, and polygons to represent images, also known as geometric modeling), oriented to the professional desktop publishing market. It is available in versions for Microsoft Windows and Mac OS X.

FreeHand is very similar in scope, intended market, and functionality to Adobe Illustrator. It was created by Altsys and licensed to Aldus, which released versions 1 to 4. When Aldus merged with Adobe Systems, because of the overlapping of market with Illustrator, Adobe returned FreeHand to Altsys soon after the merger (after some legal wrangling, and intervention by the Federal Trade Commission). Altsys was later bought by Macromedia, which released FreeHand 5.0, 5.5 (Mac only), 7, 8, 9, 10 and 11/MX. In 2005 Adobe acquired Macromedia, thus returning the FreeHand product to Adobe.

A flexible application, it is used for page layout (especially since version 4 which was based on Altsys Virtuoso for NeXTstep and had multi-page capabilities) as well as the creation and editing of vector graphic files for print and the Web.

Its current version, FreeHand 11, is marketed as FreeHand MX, which shows its integration with the Macromedia MX line of products, which also includes Macromedia Flash, Macromedia Dreamweaver and Macromedia Fireworks and more.

Below is the screen shot about Macromedia FreeHand.
Figure 1.

Figure 2

Here I've share tutorial about how to use Macromedia FreeHand. You can download and learn it. This tutorial is teach you step by step. Dummies also can learn from this tutorial.
Click download icon below to download this tutorial.
Click to download

source:http://en.wikipedia.org/wiki/Macromedia_FreeHand
tags: macromedia FreeHand, wikipedia, learn freehand, tutorial
Related Posts Plugin for WordPress, Blogger...