Illustrator and Photoshop to create gorgeous wallpaper patterns

March 10, 2011

In this paper, Illustrator (referred to as AI) and Photoshop (referred to as PS) of the powerful combination of software to play their respective advantages, creating a colorful flower pattern wallpaper. I hope you like!

We first look at renderings:

Click to view larger image

Production step is mainly based on the first draw with Illustratot pattern, then use Photoshop to do wallpaper effects processing.

1, open Illustrator, the new file. Using pen tool draw a curve, symmetric replication, connect two fixed-point (object> path> connection), leaf strokes to complete a steel arc, symmetric replication, connect two fixed-point (object> path> connection), leaves to complete.

Click to view larger image

Figure 1

2, copy 1 leaf, rotate 90 degrees. Mixed tools (w), linking the two leaves. Create 1 / 4 circle (draw a circle, remove with a node).

Click to view larger image

Figure 2

3, select the arc and mixed ridge line, the object> mixed> replace the ridge line.

Click to view larger image

Figure 3

4, object> mixed> Mixed option, the specified interval steps, steps 5 or so. (Translator's Note: This step is not very clear, to create mixed, chaotic, and I adjusted a bit, there is no need to create a whole mix of straight friends can tell you that way.

Click to view larger image

Figure 4

5, copy the mixed path, adjust the position (there is to know how friends can share) and color, on the ground floor.

Click to view larger image

Figure 5

6, repeat step 5.

Click to view larger image

Figure 6

7, continue to repeat step 5.

Click to view larger image

Figure 7

8, object> expand, with (A) Superposition of the four selected leaves duplicate, delete.

Click to view larger image

Figure 8

9, select all, the object> ungroup. Adjust the opacity 75%, then you can choose different stacking options, get different results.

Click to view larger image

Figure 9

Now we do a good job with Illustratot based design, let's open Photoshop, wallpaper production further. Please click “Next.”

10, open the PS, create your desktop resolution size of the black background paper documents, to do a good job of “Flower” entrusted to the PS, the make some adjustments.

Click to view larger image

Figure 10

11, mixed Options> Bevel and relief. Set figure.

Click to view larger image

Figure 11

12, copy 1. Narrow, adjust the position.

Click to view larger image

Figure 12

13, repeat step 12.

Click to view larger image

Figure 13

14, continue to repeat step 12, adjusting the mixed mode, Darker Color.

Click to view larger image

Figure 14

15, repeat step 12, a black color overlay, 100% opaque.

Click to view larger image

Figure 15

16, continue to repeat step 12, adjusting the mixed-mode, Color Dodge.

Click to view larger image

Figure 16

17, add the top layer, black and white gradient, Multiply.

Click to view larger image

Figure 17

18, the new layer, Filter> render> clouds, foreground and background colors to black and white, Filter> Fuzzy> Gaussian blur, radius 5, as Multiply.

Click to view larger image

Figure 18

Finally, you're done, you can play your own imagination to add some additional elements and effects, color have another wonderful feeling.

Click to view larger image

Figure 19

Superstar format -> BMP

October 29, 2010

Recently, I stumbled upon a Superstar -> BMP approach.
First of all, please download the latest “Superstar 3.4Beta 7″, installation, operation Delphi5, select Component-> Import ActiveX Control, then, you will find “Import ActiveX” there is a choice for “Pdg2 Type Library (Version 1.0) “….., do the rest I do not say it.
My method:
procedure TMainForm.PdgToBmp (FPdgName, FBmpName: string); / / FPdgname - Superstar format file name FBmpName - to save the BMP file name.
var i: integer;
j: boolean;
begin
ClipBoard.Clear;
MyPdg.LoadPage (FPdgName, 0,0,10);
Mypdg.Refresh;
MyPdg.CopyToClipBoard (0,0, MyPdg.PageWidth, MyPdg.PageHeight); / / This operation will take some time
j: = false;
while j = false do
begin
MyPdg.CopyToClipBoard (0,0, MyPdg.PageWidth, MyPdg.PageHeight);
for i: = 0 to clipboard.FormatCount -1 do / / test whether there ClipBoard bitmap, because I sometimes found in debugging the implementation of MyPdg.CopyToClipBoard (0,0, MyPdg.PageWidth, MyPdg.PageHeight); to be wrong, only detect the presence of a bitmap, and then replicate.
if Clipboard.Formats [i] = 2 then j: = true;
end;
Bmp.LoadFromClipBoardFormat (cf_BitMap, ClipBoard.GetAsHandle (cf_Bitmap), 0);
bmp.PixelFormat: = pf1bit;
bmp.SaveToFile (FBmpName);
end;

In addition, if the entire directory to convert the file continuously, please insert the conversion process between two
Sleep (1000); / / to the Superstar a little time, otherwise she will have opinions, does not work friends!!!

And Mypdg.Visible must be set to True;

Recommended links:

My PERFORMANCE gone?

Evaluation Multimedia Creation Tools

Computer fraud, although he is alleged to have bought

PHOTOSHOP plug-in Filter is the ultimate Dharma (2)

Out errors to make your writing more efficient CSS

Sina, Focus merger triggered change in the situation: Who's Sina?

ASF converter

Fit, is the best

The three basic features of object-oriented [1]

Capital tangle 3G

VOB to MP4

MKV to iPod

Premier DOWNLOAD Managers

spy pen the Advantages

How to use C #, Text Editor (3)

October 19, 2010

In fact, there should be more on the branch operation optimization method, but I have limited capacity, can only propose this approach. Test proved that, in dealing with small documents program runs okay, but when the document content a lot, there are tens of thousands of characters, the branches very slow speed, but also hope to provide expert solutions.

In order that the document object, but also defines the Document Object TextDocument, the object in the document object model is the largest object, I do not imitate other document object model will be derived from the TextElement come, but a direct definition. The object is used to operate the whole document, and lists some of the basic operation of operational documents, such as delete, copy, paste, etc.. Also provides a method to achieve the functions of VBA.

In addition, the document content management objects defined Content, the object under TextDocument object, used to manage all the document element, which defines attributes Elements, the property saved the document as a list of all the elements of the object. The object also defines the properties SelectStart to indicate the location of the insertion point, SelectLength to represent the selected area of the length of 0 means no select any element of a positive number indicates the insertion point back to select from a number of elements, is negative forward from the insertion point is that a number of selected elements. The object also defines a set of functions dealing with the insertion point, such as moving a number of elements left to right, up, line down. We all know that, in the text box can use the cursor keys to move the insertion point, you can also use the cursor keys while pressing Shift key to move the insertion point and select the document content, the user can also use mouse clicks to move the insertion point, mouse click while pressing the Shift key to move the insertion point can choose the document content; this object is defined in the Content property AutoClearSelection, when the property is set to move the insertion point, set SelectLength to 0 if not set then move into the property point set SelectLength value, making the new insertion point and insertion point between the old elements are selected, so a text editor if the user press the Shift key to set the AutoClearSelection property on the line.???????????????????????????????????????????????????????????????????????????????????Can be proved, when choosing elements for the continuous changes in any event select the regional and the insertion point, at most two elements in the choice of the regional state of change. So long as these two films were the starting position and length of the region, and then re-draw the elements of the two regions can be.

Users can right documents are many operations, such as moving the insertion point, select an element, Shezhi characters in the font color and size, insert text and images, Xiugai element of the set, Shan Chu cut copy paste, etc., there are several dozens of operations, Er Ju At some point these operations is not available, need to determine if these operations are defined in TextDocument corresponding interface function, the TextDocument class code too much, too bloated, and each new kind of operation needs to modify TextDocument, Therefore, the concept of this proposed action.???????????????????????????????????????????????extDocument???????????????????????????????????? Define the basis for this action type EditorAction, such as the abstract class, its main interfaces:

??otKey ???,?????????????????????????????????????????????

??KeyCode field, and trigger action when the keyboard key coding

??ShiftKey field, trigger action when the Shift key state

??ControlKey field, trigger action when the Control key state

??ltKey ???,?????????Alt?????br />
??MouseX, MouseY field, trigger action when the mouse cursor coordinates in the view area

??MouseButton field, trigger action when the mouse button state

??Param1, Param2, Param3 field, motion parameters, the significance of the decision by the specific action

??TestHotKey function test keyboard hotkey, this function is called by the text editor to determine whether to trigger an action

??ctionName ??????????????br />
??isEnable action is available

??Execute implementation of the action

??OwnerDocument action object operated by the document object

Practical action objects are derived from EditorAction, if the object has hot keys HotKey set in the initialization field, the first heavy ActionName given a name, and then override Execute actions to achieve their process, also required heavy isEnable or TestHotKey.

??extDocument????????ctions,?????????????????????????????extDocument??????????????????????????????????????????????????????????????ctions??????????????????????????????????????????????????????????????sEnable???????????????????????????????????br />
???????????????EditorCopyAction????????ditorAction?????????ActionName??????"copy";???isEnable,????????????????????rue??????False,???Execute?????extDocument?????????????????????????????????HotKey??System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C,??????????????????Ctl+C??br />
This mode of action handling procedures also facilitate the expansion of other applications can also be added to the list of custom action moves the object, so a text editor will automatically apply the action.????????????????????????????????????????????br />
In fact, the pattern of this action I have read dealing with the text editor part of the SharpDevelop source code and comprehend, and take over with the use, proven or very good.

Since I do is text editor supports copy and paste function, of course, and first copy operation. Program can also send a variety of formats to the Windows clipboard data, this data can be plain text, or images can also be custom format, other programs during paste operation can choose the required format. For example, in the VS.NET code you copy a piece of code form, paste it into Word and Notepad in the results are inconclusive, although the text is the same, but with the code pasted into Word, the color of the text displayed in the , while the notebook is the plain text data. We can use the clipboard viewer clipbrd.exe to real-time view contents of Windows clipboard. In. NET, send data to the clipboard it is quite easy, first instantiate a System.Windows.Forms.DataObject object, call its SetData method the first parameter for the format name and the second parameter data, The method can be called multiple times to save the data in different formats, and then call the method can be static library function System.Windows.Forms.Clipboard.SetDataObject. In a text editor to copy the data to the system clipboard at the same time save the two data, first save the document in the selected part of the plain text data, and then will be converted to a selected part of the XML string and then use the self- defined format name of the saved into. Such other programs can use one of the plain text data. Paste operation procedures during the first call to the static library function System.Windows.Forms.Clipboard.GetDataObject way to get a realization of the System.Windows.Forms.IDataObject interface object, then call it GetDataPresent method, if found to have my own definition of the data is read the data, and then take them out of the data as a string, which is a XML string, parse the XML string, and generate a series of documents to the document element object into the current Wei Zhi, this paste operation can all document elements and their formats to paste over. If no custom data, but there are plain text data, then read the plain text data, and generate a series of text elements according to the text object, and then inserted into the document the current location.

VBA

Document object also supports VBA,. NET Framework support for VB.NET scripting languages,. NET class library classes and interfaces Microsoft.Vsa.IVsaSite Microsoft.VisualBasic.Vsa.VsaEngine has supported scripting language. I refer to HTML document object model, in VB.NET based on the design of a scripting language processing document, the language of global objects directly using a script to access a document on the Document Object TextDocument, the use of document.all will be able to access the document made a mark in the document certain elements of the object, use dbconnection background can use a text editor to use the database connection object, use eventobj access to the document editor to trigger the event information, use vbsystem to call some of the routines. First define some type of script used to implement the global object dbconnection, eventobj, vbsystem function, while the global target document type is TextDocument, has been achieved, but document.all not yet been realized, for in read-only attribute all add TextDocument The property returns an object of type System.Object, defined as the type of document.all field content of the document dynamically change, so need to use. NET reflection mechanism to create a dynamic instance of an object type and object, its creation process are:

??add a System.Reflection.AssemblyName object, set its Name property to “RunTimeTextDocumentLib”

??Use AppDomain.CurrentDomain.DefineDynamicAssembly to create an assembly generator System.Reflection.Emit.AssemblyBuilder

??Use the DefineDynamicModule generator assembly to create a module generator

??use the module generator DefineType to create a type of generator, type, name AllElements

?????????????????????????????????????????????????????????

??????????????????????????????DefineField????????????????????????object???

??type of generator used to generate a new type System.Type, and then dynamically create an instance of this type, so that the object dynamically generate the AllElements

????????????????????????System.Type.InvokeMember???AllElements???????????br />

????:

MMOG / LE ASSESSMENT of the road Troika

12 large companies in 2007-2008 compared the welfare state

CGI teaching: CGI ENVIRONMENT variables used

Review Games And Entertainment

Four Common Questions About Computer Animation

Taobao Alipay betrayal?

Leaders Must be good to know people

DivX to 3GP

AVI to MOV

Trojan horse to steal account with Sister Furong be prudent to see Hot pictures

Top Web Or Video Cams

MOV to MPEG4

When the doctor came TO their computers for health

Eight motivate the staff more dynamic model [1]

Symantec said the new storm worm detected

Take the golden key to open the door to wealth

October 13, 2010

Recently, some of the textiles sector fortunate contact with entrepreneurs. E-commerce on the textile industry into a talk about the issues. Reality below.

1 comment on the current “network winter” problem? It should be noted: I am not in favor of such a network, said the winter. Network Winter said that the development of e-commerce business is misleading. At first, many people advocate: e net play to do. Call Enterprise Internet gold rush. Now, a group of companies have entered the network. Added to the cold, so while the clouds, while rain, while the wind, while snow, whether for business do? Overall, the e-commerce development is healthy. Of course, the first time, a number of sites engaged in burn Competition, “cloning” foreign model, a departure from the economic laws, has made people realize the ideological understanding of sublimation. Begin the transition to achieve operational and personnel restructuring. Looking back on a walk in the road:
Breakthrough in cloning mode obtained emancipation of Siege;
Breakthrough burn, misappropriating ideas on the progress of knowledge gained;
Breakthroughs do not speak the strategic thinking, tactical design and implementation of internal restructuring and strategic integration;
Breakthrough site began long-term loss of earnings momentum;
In particular, a large number of traditional enterprises, began to kill the main battlefield of e-commerce, a group of wealthy farmers first started to engage in e-commerce, that: China is experiencing a new e-commerce development and energy accumulated before gaining! Therefore, no need to question and sigh! Even without a few drops of rain fall, predicted that the coming cold.

2, the textile companies can not when the “lion of repose,” now's accession to WTO, to tap into e-commerce is a strategic choice! Vibrant, large, open online market is about to unfold in front of Chinese enterprises, Chinese enterprises will get new life on the network and hope. Late last year, the U.S. arrival of online purchasing groups, that is a sign and proof. It shows that large international buyers sourcing from under the net, turned to online procurement.
Currently, the number of textile enterprises, especially to recognize that economic development with the network, bringing this strategic shift in the international commodity markets. International buyers, international business, international procurement groups have online purchase, if we cling tightly traditional markets will naturally less and less customers, less and less business opportunities, business has been increasingly deserted.
Therefore, the textile industry will never do, “repose of the Lion”, was quickly into action. The main battlefield to kill e-commerce. Otherwise, simply can not meet the WTO requirements.

3, the concept behind many companies feel that the Internet no use, how do?
At present, there are indeed quite a number of enterprises is not the Internet. The Internet sector has been saying: that the idea behind Chinese enterprises. I do not agree with that. I understand that this stability key entrepreneurs, reflecting a prudent entrepreneur, a sense of responsibility. Before a business online, there indeed exists, “saw web building but not the order to” question. Invisible effect, trying to chop the duck head money thing, entrepreneurs will not shop and go to the.
At present, some people rely on traditional business e-commerce, there are two major errors.
One is: the e-myth, and that only the returnees, only the Doctor and Master, and only do web pages, people will be programmed to engage in e-commerce. As a result, e-commerce to stay away from the civilian population, away from the traditional medium and small enterprises.
The second is: the e-commerce “sets” of the. That the companies engaged in e-commerce by some people have to “clone” mode to do. They designed a variety of so-called profit model, lying mostly false. It is the first foreign businesses design a better one kind of talent profitable business?
Both misleading and the actual departure from the small and medium enterprises; no good solution to the development of e-commerce idea how the macro and micro docking problem. Therefore, many businesses on the net, build a website. Internet companies that earned, earned. Lost. This is not right. As the network company, to help traditional companies can not fool the traditional enterprise. China has more than 10 million traditional enterprise, which is the basis of our huge e-commerce, a huge customer base.
As an enterprise, but also recognize that electronic commerce is practical, real need to do. You made a web page, like you only bought a ticket to Beijing, a step not go too! This is how OK? Smoke and mirrors, of course, no effect. From the network point of view of economics, e-commerce buyers and sellers not only achieve the shortest and fastest path connected transactions, and e-commerce is to achieve double the efficiency of the motor. However, the motor may start up Caixing ah!
Therefore, e-commerce to the altar, out of misunderstanding. That is towards the popular and mass direction, lower the threshold so that more people come, they combine their business situation and characteristics of micro docking solve the problem, companies see the results, since the welcome. “

4, companies want to build websites, but no doctor, master how to do?
Talent is the future of the Internet economy. Grave shortage of the current network, this is reality. Therefore, all try to steal doctors and masters. I see no need to follow suit grab. Set up a business website does not necessarily have to have doctors and masters. Internet economy and e-commerce is urgently needed talents, is a versatile personnel. This compound is a multi-compound. It includes the knowledge and ability of the compound, high intelligence and wisdom of the composite Industrial High School, should include expertise and marketing capabilities, capital operation ability of the compound: the entrepreneurial skills and international business experience in the complex operation to do. Their online information, should have a strong penetrating power and discretion, to a common information from the Internet excavated “were in” the commercial value of Caixing.
Such people, the best by the internal selection, in practice, Improve. Establish their own network of human resources business.
On the whole, the overall structure of the current network of talent, there are two reasonable:
One is, unreasonable allocation of human resources. Not based on market demand, but demand-oriented technology;
The other, talent structure is irrational. Not formed market-oriented human resource allocation and structural characteristics of incremental personnel. Therefore, the information can not meet the commercial requirements of efficiency increment. Talent will only increase the cost, human capital of the precipitation. Textile enterprises to establish businesses or into e-commerce site, it should pay attention to this.
5, we are a small textile business, how to enter the e-commerce?
Small-scale textile enterprises into e-commerce more efficient and easier. Some people think that “despite the good e-commerce, no money out of people can not. In fact, is totally different. A while ago, around the building in the Harbor, built a large network platform. Using these platforms, we can open to store go online. the sale of the world to do so. In particular, small and medium textile enterprises, a full range, wide variety, many products are the hot international buyers. network to provide SMEs with an equal opportunity and equal development. absolutely no need to How much investment, as long as a computer on-line. you can put our tentacles out to SMEs.
Not long ago, I wrote an article, describes a use of a computer into the popularity of e-commerce, fool-based network marketing software ——” Business Express. ” Article published, received many letters. The new software and new marketing model greatly welcomed by small and medium family. The problem is some of the current half-comprehended Internet companies, in order to give their money to the enterprise many flower ideas, people-unfriendly. A program they are today, hundreds of thousands, a plan tomorrow, the millions. I surveyed a number of Internet companies, they go to business every day, “debut”, he did not done a business on the Internet. I advise you not to listen to these “lobbyists persuaded Road,” the words.

6 textile enterprises into e-commerce, how the leadership of grasping? Grasping what?
I think leaders should seize the two points. First, grasp the soft input, and second, grasping hard put. Soft Input: employees should pay attention to the whole network is awareness, especially e-commerce strategy leadership awareness; OK to tap into the thoughts and e-commerce strategy, selecting the right one entry point, and began composite talents and the backbone of the training. We should get rid of the mystery of the computer, so that ordinary people dare to enter the network space. But also to establish their own network as soon as possible talent.

7, we have units built home, even just a place, what to do next?
Internet access in the enterprise, many companies built a home page on the net, but the effect is not large, this is a business online with a general question. Comrade Mao Zedong, then a famous saying, is to cross the river, we should solve the problem bridges and boats, also, we want to line the Barley, let him grow into wheat, the gold from the Internet to find gold, but also to solve a question of methodology. SMEs into e-commerce, exactly what does?
1) To spotted the direction of confidence.
We know e-commerce is the future direction of development is the golden key to the development by leaps and bounds, is to transform and lead the traditional enterprises, especially SMEs, the rapid development of a strong driving force, we must take as soon as possible prospective ideas, strengthen confidence, to e-commerce, enterprise Internet works, as a major issue of strategic significance.
As for the use of practices and ideas of what each company can choose their own reality and define.
Save resources. As soon as possible domain name registration, domain name is the company's intangible assets, an enterprise accounts in the network thin building. Must be good protection. As the domain name registration, in accordance with international practice, the implementation of the principle of who should register who benefit, so we must quickly hands. If our names are accounted for by others, how that line? !
By boat to the sea. Is to use someone else's boat to install our goods, ready-made website with others, to do our e-commerce. This business is not a big investment, nor a big risk. And can create their own home page and in others to build their own products online house sample room. Such as the network platform for the release of his company, give us a good opportunity to provide such.
Landing on a beach together.
For example Jixian persimmon and chestnut. Wants to invest a great site. Can a few small factories or individual, join forces, register a domain name, make a web page online to occupy a large piece of blue sky, is also a good idea.
Car road occupation. Plain and dry, under the input. Under small repairing a computer can be on the line. In particular, this year's tax department for next year, the VAT declaration to be used for computers, we can ring a spade two, using the computer as soon as possible to business e-commerce started. After the three methods to choose the first method is to run as soon as possible. 1) To select a good site model.
To adhere to the popular Web site would not join without;
To adhere to non-commercial site not join gas;
Multiple charges would not join;
Li Gui lift up sword site would not join the (school name caught here)
The site would not join the buried traps (yellow website link)

8, - e-commerce will give businesses what exactly?
E-commerce and business nature of the Internet, the integration of the spirit. It is just like a strong current, the activation of a nerve of every business. Our operational mechanism and management in concept, personnel structure, market strategy, profit margins have undergone major changes. Not only provide a huge online market, can provide much larger than the traditional trading profits. And give a boon, bringing sales, bringing efficiency, bring benefits, in a word, will make companies reinvent themselves! Right now, many textile enterprises felt the “network to cherry into gold” role. The network felt the huge opportunities for enterprises, and development of hope.
At present, the party and the government requires us to achieve leapfrog development, unconventional development. Small and medium textile enterprises as long as we speed up the pace of development of electronic commerce, bold, and actively explores, the grasp of the new economic era, the golden key to open the door to wealth, they will achieve fruitful results.

Recommended links:

Real To MP4

Source EDITORS Infomation

7 completely remove the USB device hardware approach

Beijing, Nanjing Software Expo increasingly Marginalized by the recovery mode bar

Screen Savers Guide

3GP to FLV

Compare FIREWALL And Proxy Servers

InfiniBand back to life

Convert Qt Movie To Wmv

HTML 5 in Change?

Young Professionals Entering The Workplace To Learn The Three Key Issues

Knowledge need to update staff training is not losing money “trading”

MKV to VOB

A New Generation Of Master Screenshot Captor Screenshot

With CloneCD CD-RW disc to save the damaged

October 9, 2010

The author used a CD-RW discs for recording, the system suddenly crash, reboot CD-RW disc can not read the contents. Want to use Nero to erase, thought starts scanning after Nero burning machine, the program will lose response.

Online search for a pass, and finally find a recipe: Use CloneCD CD-RW disc can be repaired. So downloaded CloneCD, reboot the system after installation, you can open the program interface has shown. At this point into the CD-RW disc, click the erase button (Note: If you do not disable the CD autorun feature, hold down the Shift key at this time is best to avoid the system crash caused by repeatedly reading the disc). In the pop-up “Erase Disc” dialog box check the “Quick Erase”, then “OK.” Quickly erase the disc on the end, it can be burned.

Recommended links:

Your New Year with Photojoy Xiu Zhao

Custom programming of the intercept keystrokes VB.NET control action

Premier Download Managers

ASF Converter

C2C staged “THREE Kingdoms”

Solutions Ibm As400 Series

TOD to WMV

Security World Asia-Pacific Will Be The New Economic CCAC2008

NavInfo SAIC Roewe help promote the car navigation

Wizard Religion

DivX to MPEG

RAILWAY

Simple Vehicles - Screen Savers

Not just set arbitrary Flash player screensaver

Illustrator plug-in integrated use of (I)

September 26, 2010

1. Illsutrator Introduction

Adobe is the world's most famous graphic image software companies. Especially Adobe Photoshop ?, Adobe Illustrator ?, Adobe PageMaker ?, and Adobe Acrobat ? software, the four known, has become the field of graphic printing industry standard.

Adobe Illustrator is a publishing, multimedia and online images of the industry standard vector illustration software. Whether you are a production line of printing and publication draft of the designers and professional illustrators, the production of multimedia images of the artist, or Internet pages or online content producers will find not only an artistic product Adobe Illustrator tool. The software is issued for your line offers unparalleled precision and control, design for production of any small to large complex projects.

As a well-known image processing software, Adobe Photoshop's sister software, due to previous long-term non-Adobe official agent of domestic firms, so has not been domestic workers in general graphic design emphasis, replaced by the Core's famous drawing software Corel draw. Should be said that Corel draw is very good vector drawing software, which is known to feature-rich, and therefore very familiar with Window for users who are very appropriate. However, as the printing and publishing industry standards, if used in conjunction with Photoshop and then import each other and can not be avoided, the output of the trouble. The real use in the publishing industry standard vector tools are Illustrator and Freehand (Note: Only a very small number of printing and publishing companies use Mac, Corel draw). Why not pop up very early Illustrator, Illustrator earlier mainly due to appear in the Mac professional graphics software, until the introduction from the 7.0 PC version only by domestic users attention more on its high system requirements and expensive professional week over the equipment so that ordinary users stay aloof, it is generally only Europe and the United States and abroad, a large advertising company in Japan only use the software. However, with the PC, the continuous price cuts, configure continuous upgrade in PC, can now also make these professional-level software.

2. Illustrator development

Earlier, Adobe in 1987, when introduced Illustrator1.1 version. The following year, they launched the platform in the Window 2.0 version. Illustrator truly be said to be started in 1988, Mac version on the launch of Illustrator 88. One year after the upgrade to 3.0 on the Mac version, and in 1991 transplanted to the Unix platform. First appeared in the PC platform version of the 4.0 version in 1992, this version is the first version of the Japanese transplants. In the majority of Apple's machines are used most frequently is the 5.0/5.5 version, because this version uses the Dan Clark of the Anti-alias (antialiasing display) display engine, so the original has been a zigzag vector graphics in the graphic display on a qualitative leap! Also made at the interface major reform, style and very similar to Photoshop, so for the old users Adobe is easy to use, no wonder he soon swept the publishing industry, soon launched a Japanese version! The only pity is that there is no PC version release, the majority of PC users when not in use Photoshop3.0 to see her! Taking advantage of golden opportunity, Adobe company immediately in the Mac and Unix platforms launched a 6.0 version. The Illustrator really being aware of PC users in 1997, Version 7.0, Adobe, taken note of the growing might and prosperity of the PC world, right? Both the Mac and Windows platform launch. As the 7.0 version uses a complete PostScript page description language, make the page text and graphics quality of a leap once again. More with her and Photoshop good interchangeability, won the good reputation. The only regret is 7.0 support for the Chinese poor. In 1998 the company launched a landmark version of the Adobe-Illustrator 8.0, Illustrator makes a very good graphics software, Adobe's powerful by virtue of strength, to completely on double-byte languages such as Chinese and Japanese support, adds a powerful The “grid transition” tools (Corel Draw9.0 have corresponding functions, but very poor results), text editing tools, etc. functions, making it dominate the professional vector graphics software dominance. With a sound momentum of 99 years and launched a Chinese language version finished. The latest 9.0 version is also available, I believe that will give users more to come.

3. About plug-ins

We all know Photoshop plug-in is very large, this is one of the main features of the software one. However, we often overlook Illustrator also has a large number of plug-ins, not known it! Illustrator can not only use Photoshop all the bitmap filter itself with a large number of vector filter. And others have developed many powerful filter, here a few more well known the importance of filters:

l CAD Tools: HotDoor company's main product, that is, Illustrator7.0 launched the same year launched CAD Tools 1.0 for Illustrator version. After installing the plug-in will be the main toolbox on the left 4 more tools button, and add four command panel. Main function of the plug to simulate a well-known software AutoDesk AutoCAD, so can quite easily in Illustrator, accurate annotation professional engineering units and dimensions. The powerful, with the plug-in, can avoid the complicated operation instructions to learn AutoCAD. The latest version of the plug-in 2.0, and supports Illustrator7.0 above.

l Transparency: HotDoor another company's main products. After installing the plug-in will be more of a command panel. The plug-in main function is to create blocks of color true transparency, it is not itself the functions of Illustrator (Note: not the blocks of color mixing). The latest version of the plug-in 1.02, and support Illustrator8.0 later. (The latest Illustrator9.0 own transparent feature.)

l KPT Vector Effects: MetaCreations is the most famous one of Photoshop plug-in developers. Of course, the support for Illustrator is also spare no effort! As Illustrator's most powerful third-party plug-ins-KPT Vector Effects inherited KPT always gorgeous interface and powerful features, give the user 13 powerful plug-in. This tutorial is using the most powerful 3D transformation feature! The latest version of the plug-in 1.5, and supports Illustrator8.0 above.

l other plug-ins: Others include Macromedia's FlashWriter, Sapphire Pack, Intense's Curvius 1.2 and Kimbo 1.5, LiveAction, TextureWorks, Panopticum company Array 1.0,3 D Vector PopArt so plug-in, because of limited space, not 11 described in detail!

When you use these plug-ins Illsutrator and together with the drawings, they would find that Illustrator has become extremely powerful, even Photoshop will be overshadowed!

As the Illustrator interface similar to Photoshop, operation is not complicated, generally no problem with the use of basic, in order to reflect the Illustrator's different from other power of vector software, following the combination of Illustrator8.0c, KPT Vector Effects 1.5, CAD Tools 2, Transparency 1.0 and other plug-ins to create a three-dimensional vector gears.

????:

free mp4 music videos 2

Interview Xoceco Xie Siyu: FLAT panel TV has been reversed in the Western pattern

3G birth enormous OPPORTUNITIES

Desktop Shop

Modern SHIPBUILDING process

Me introduce the judges to do creative practice CONTEST Hugo

Tianjin Ninghe hotel selection Maxima

DivX To VOB

Details determine success or failure: Lean Manufacturing (6)

FLV to 3GP

TS to WMV

Articles about Communications Tools

BI the New World: semi-finals games, who THE winner?

Psychosomatic syndrome after holiday revelry

September 16, 2010

After the holiday, some people do not think go to work, and low efficiency; Some mental and physical exhaustion, feelings of irritability, depression, heart; Some gastrointestinal discomfort; some people sleep … …

If you have the performance, be careful, “post-holiday syndrome” has been quietly looking at you … …

Holiday for many busy people, it is a rare opportunity to relax: to bring home or travel, or shopping spree, or Juyou drink, or Mengtoutaishui … … holiday, after crossing over from trouble like static, from idle to busy from static to trouble, not many people unable to adapt, suffering from a variety of illnesses. Many experts pointed out that the so-called “post-holiday syndrome” is not a disease but people in the holiday, the body and mind to adapt when under pressure again after the emergence of psychological symptoms:

Some people also immersed in the holiday joy, yearning for fun and not to go to work, resulting in inefficiency, incompetence; some people are not happy and feel myself mentally and physically exhausted, feeling anxious, depressed heart, have no appetite for food and drinks. Meng mahjong during some festivals will, through the night, worked very hard to leave after the end of the suffering from insomnia.

Experts believe that the so-called “post-holiday syndrome” in medicine is not a rigorous formulation. People living arrangements during the holiday unscientific, inappropriate pace of life, resulting in extended Christmas physical decline and emotional stress after, then there fatigue, anxiety and other symptoms, is often said the “post-holiday syndrome.” Most people adjust after a week of conscious, you can return to normal without medical treatment.

* Chinese New Year holiday sequel discounted to read his body

But some people have serious post-holiday emotional responses, such as: excessive anxiety or depression, insomnia, fear, etc. to work. These people are often sensitive and paranoid personality, fatigue, stimulating experience will lead to some personality factors are stimulated and exposed, self-adjustment ability worse, a long time (1-2 weeks, or even a month) can not be self-recovery, significant effect on the physical and mental health, affecting normal life, you should see a doctor for psychological treatment, sometimes requiring appropriate medication. If medical treatment is not timely, but also lead to anxiety disorder neurosis consequences.

Of course, the really got “post-holiday syndrome”, it need not panic, the doctor prescribed the prescription of self-treatment is:

First of all, to overcome the laziness and fear as soon as possible to their psychological state to active. Quietly comb should be done after work, try to busy working in good order, and will not confused and running around in circles. Lack of some social, introverted, loneliness people prone to the psychological, if a similar situation, should try to adjust their mentality and communicating with people, or talk to family and friends mind, or find a psychiatrist untie knot.

Secondly, we should try to expand their social scope, and more with people, so that their lives fuller and enhance their ability to adapt to society. In addition, spare time, you can invite friends and colleagues or play gym, or go to the countryside to enjoy the natural scenery, relax and adjust their mood.

* Learn from sweating during physical condition for your holiday job preservation

Thirdly, to resume their normal routines as soon as possible time is extremely important. Should keep early hours, do not stay up late, sleep late and do not greedy, attention to diet, eat light, easily digestible food, drinking less alcohol.

If self-regulation ineffective, on the hospital to seek medical help.

Shanghai Second Medical University psychology experts, the so-called “post-holiday syndrome” is not a mental illness, but people go to work after the long break, the physical and psychological pressure which occurred after the bad state of mind.

Occur in this state, the expert analysis of the reasons why there are three: First, from the trouble like static. We are joyfully in the holiday visiting friends and relatives, mutual visits, very lively. After a post-holiday, this noisy and bustling atmosphere of the scene are in the past, all of a sudden return to a calm environment. Second, from idle to the ground. Although the festive, almost every family had people coming and going, busy, but life is very casual content. Festival on the immediate work to put fast-paced learning, effort and pressure to start again. Third, from static to trouble. Original psychological well-balanced, but the Azeri visitors to the festival, frequent exchanges of information are many. Look at other people's lives, Bibi own life, look at his family's daughter, about my son, a large gap between the imagined, grew more and more tired, mental state of imbalance. “However, this is just a bad mental state, rather than mental illness.”

“Post-holiday syndrome” Although not a disease, but certainly affects the work and study, for which psychological experts give a few suggestions:

First, an appropriate amount of rest. Celebrate the festival very tired, so the end of the holiday back to work and study part-time status requires more attention to the rest, to compensate for the accumulation of fatigue and recovery holiday.

Second, progressive agenda plan. When the return to daily work and learning, we should pay attention in the schedule to have a progressive process. Do not suddenly to have a full schedule, and do not put too much in the holiday immediately after the heavy, challenging projects.

Third, comparisons gradient relaxation. Comparisons can be continuous efforts and gaps in the motivation, but also pay attention to their enthusiasm, and composition of the negative effects of low self-esteem. In short, use a peace of mind to overcome the bad state of mind.

Recommended links:

avi to mpeg converter FREE

iphone video Format

EMC Q3 earnings Results announced revenue fell 5.3% over the same period

rmvb ps3

Picked Pager Tools

Matting, Photoshop Master of the Road, 2

Novell and Red Hat open source giants collision

GEM made the most rich of 10

How to quickly ASSESS the adoption of CMMI

J2ME LEARNING Reviewing the Old Posts

Orient Securities Executive Assistant Shu Wang: grab the share of off-site transactions

Easy To Use Education

Convert Audio Files

Harder than steel

Comment Puzzle And Word Games

e-cology in the Pan Micro Series 66

“Two-way referral” good medical care recovery mode

August 3, 2010

The current health care sector parties generally agreed that community hospitals to address “medical treatment is difficult and expensive,” the issues. The use of information technology to strengthen community health care management, promote large-scale hospitals and community hospitals between the “two-way referral” is an effective way to improve service levels and useful exploration. Now emerged around the country are many large hospitals and community hospitals between the “two-way referral” model which “restoration mode” is especially noteworthy. Rehabilitation hospitals also received from so many countries to visit the medical profession and the exchange of experience. So, rehabilitation hospitals, “two-way referral” model in the end how? How is the management? IT tools in which what role play? With these questions, head of China's Information Network reporter recently visited the Renaissance Hospital Information Centre Song Yan.

“Renaissance mode” to benefit the 13 million people

Beijing Fuxing Hospital and community health centers on the altar of service constitute the 130,000 residents of the community health service network. Currently, the community has basically realized the “minor illness in the community, serious illness to hospitals, rehabilitation back to the community” for residents to provide medical treatment and health management convenience.

Yuetan Community Health Center is a subsidiary body of Beijing Fuxing Hospital, consists of 10 community health service centers, covering an area of 4.14 square kilometers. 10 community health service stations are small, some large with three general practitioners and three general nurses, while a small two doctors and two nurses with.

Each service station are equipped with doctors and community health management system workstations, the current health service stations of different data-sharing also can not be achieved, but the station has achieved health records and electronic prescriptions. Under a doctor's prescription after the charge office and the pharmacy can check the patient's medical record number to the prescription of the content. Technically, patient payments, obtaining medicine are paperless.

In fact, doctors still have to be equipped with a printer to print out prescriptions, and paid even after the seal. “This is mainly because there is no legal validity of electronic signatures.” Yan Song explained: “The patients need a prescription as a medication guide.”

Many years behind the success of

Song Yan believes that hospital information must serve the business needs of the hospital to better serve patients, clinicians provide better service and technical support, such as patient data collection for medical research, clinical services provided technical support.

Rehabilitation hospital information construction also experienced a long period of development, according to Yan Song presentation of information from the rehabilitation hospital to start planning for information technology by the end of 1994 - Construction of HIS system. Prior to this, more decentralized management of rehabilitation hospitals, and insufficient use of information technology for clinical and research services.

The end of 1994, started the whole hospital information system demonstration, and made an overall design scheme, building an information platform. After six months of system development, in the July 1, 1995, including hospitalization Department official running, nurses stations, drug stores and charges in the number of subsystems, or the DOS system was used. After two years of debugging, running, in 1997, the system has been recognized by experts in various fields.

From the time point of view, the cost of patient information to achieve the network management. Directly to the network received a single ward, and an access is 26 wards of view, Beijing Fuxing Hospital is the first.

In 2000, the Hospital of the DOS system was upgraded, and the system has further expanded its capabilities, from development to management of patients on the outpatient management. In 2001, the system from DOS to upgrade to the Windows operating platforms. At this point, considering the hospital's internal accounting (all aspects of income), statistical functions have gradually entered the system, and includes the Health Bureau and other higher authorities asked the network reported also connected to the system.

In addition, the health insurance management at this time also gradually embedded in the system. Medicare's “Sharu” HIS system to increase the number of workload. Because they do not simply see a doctor, also includes paid health insurance, hospital information center staff to actively consider the adoption of information systems to meet the medical insurance management system, including increased monitoring, statistics, tips and other functions, greatly facilitates the accuracy of medical advice nurse input .

As the rehabilitation hospital medical insurance management use of information technology work, Bao Zheng the management of timely and accurate, Medicare Zhongxin Beijing 2005 Zuzhi 16 hospitals to rehabilitation hospitals Shen Guan, Chongfenxuexi reference information Jitongruhe Peigeyiliao Bao Xian Jin Xing management of work experience. The management and monitoring rehabilitation hospital information system is more distinctive construction of a module is developed independently by the hospital, the cost of real-time monitor the occurrence of subjects, including the ratio of the current drugs, the average hospitalization costs and other information.

In addition, another more unique hospital infection control module can monitor the situation of hospital infection, including infection, infection and drug susceptibility testing and infection information. Doctors through information technology can directly access the patient from the system information, observing the patient's drug sensitivity, and then under the control of the target, using computers to analyze the data, thus solving the original record of the inconvenience of manual greatly increase the work efficiency.

“Minor illness into the community, serious illness to hospitals, serious illness out of the hospital to return to community” planning ideas, the following main advantages: on the one hand to take advantage of modern network technology, communication technology, control technology and some medical equipment terminal , will extend services into medical and family, personal, maximum expression of these services in a timely manner, at any time, interactive, so that the inhabitants from the time, geographical constraints, can fully enjoy the medical and health services; second, convenient and standard method of collecting patient data, and through higher hospital electronic medical records and interoperability, to share patient data for the next clinic to provide help; Third, support and other remote systems such as transmission between electronic library, preventive use of data for research, and timely detection of cases.

Digital hospital is the most advanced IT technology fully used in the healthcare industry, the core is around access to health services for each person, the whole community health resources and a variety of medical services, such as hospitals, specialists, community health care so connected, integrated into a complete system, to improve the community health service efficiency, reduce operating costs, better serve the community. Rehabilitation hospitals, community-based medical services building, making every community residents really enjoy the digital hospital convenient to them.

Further improve the policy support needed

Song Yan believes that the construction of hospital information services in promoting health care quality and level of enhanced policies and legal systems need to support levels. For example, the promotion of electronic medical records issue is not only to electronic medical records electronic medical records, but also to monitor the quality of medical services, but also from the perspective of the patient, but that patients can learn from the electronic medical records in a number of relevant information in order to better serve patients.

However, the existing legal and institutional lags far behind the application of new technologies, such as electronic patient medical records in the event of a dispute do not have the force of law, hospitals have to secure, in the electronic process must also be parallel with the paper records. To some extent, restricted the application of electronic medical records in depth.

Recommended links:

Avc-free

Infomation Clocks And Alarms

Lists Trace And Ping Tools

SAIC Ssangyong Qin Zhu

New Search Or Lookup Tools

Alibaba CEO Wei Zhe: mergers and acquisitions in the domestic launch

Zhu Wenhui: Deep popularity

FMCG distributors and how the DIFFICULTIES faced by self-improvement

Dvd ripper

Labor experts advise: free quit to be the non-competition

Lists Mathematics EDUCATION

The Table Border Css Syntax Order

3gpp converter

3% discount notebook supplier return profits behind

Fun Chinese version of Firefox mode conversion work great transfiguration Entertainment

Convert Mp4 To Avi

Production of the Underwater world with Maya4.0

Drop-down menu options can do or how to do hyperlink

July 15, 2010

The following code is Microsoft's code, you can refer to the writing.

Merry CD-R Sound CDA to WMA Creator

July 9, 2010

Merry CD-R Sound CDA to WMA Creator allows you to convert audio/video files between WAV, OGG Vorbis, MP3, MP2, WMA, AAC.Using Audio Converter you can convert audio/video files from one format to another, specify frequency, number of channels, bitrate and other parameters of your output files before you convert your audio files. Merry CD-R Sound CDA to WMA Creator - The application has very user-friendly interface. The application supports AVI, Divx, Xvid, MPEG1, MPEG2, ASF, WMV, DAT, H264, H263, RM, RMVB; specifies the location of the output audio files before converting, visually judges the progress of the audio conversion process. Convert CD to MP3, CDA, CD-R, DVD-Audio, AAC, AC3, ID3, M3U, M4A, M4P, MP3 ID3 Tag, OGG, RA, WAV, WMA, MP2, APE, VQF, MPC, AMR, Midi, WAVE, and RM Vorbis with excellent output quality and high ripping speed. Rich Options of MP3 Encoder, WMA Encoder and OGG Encoder. Support MP3 and OGG from 6,000 to 48000 sample rate. With a small TAG editor built in. You can easily edit File’s (MP3 / WMA / OGG Vorbis) TAG information. Supports freedb function. Get title, artist and album information from remote FreeDB server.

Recommand Link:

free download mp4 to mpeg converter

Review Chat And Instant Messaging

ISkySoft Video To DVD/VCD Converter Lite

Converting Avi To Mp4

OPEN PS3 Converter

#1 DVD TO Zune & Zune Video Converter

Comparison Reference Tools

vob converter free DOWNLOAD

NoteBurner Mac M4P To MP3 Converter

News Servers Specialist

Easy Media Recorder

Ever CD-R OGG RA To MP2 Burner

Daniusoft DVD to iPod Converter

Youtube FLV to QuickTime Top Rated

Blackberry video format

Get free blog up and running in minutes with Blogsome | Theme designs available here