Help with Guilloches and other things?

Heya, i've used Illustrator before for a few things, but i'm still quite new to it. Hope you can help.
Ok so what im trying to do is make bank note from scratch. Dont worry, its for a college project and it'll be an entirely new design so theres no chance of anyone mistaking it for real money (althought I do want it to look real)
I wanted to include Guilloches in the design. These are the lines found on bank notes to make it harder to counterfeit:
I've experimented using shapes made of lines and using the blend tool to create multiple lines in between them, but it doesnt give the same effect. Is there a better way to achieve these results?
The other thing is cross-hatch shading. I want to include my own photo into the design (vain, i know ). Ive also found no way of doing this. Can you help me?
Thanks

Sorry, but Illustrator is really not ideally suited to banknote design.
I designed the current series of Icelandic banknotes so I know all about the problems involved.
You can make something that "looks" more or less like a banknote, but doing the actual artwork for a banknote is a totally different kettle of fish.
Illustrator (although a vector application) has pixel-based output (rip), whereas real banknote designs never use pixels, only lines.
In addition, the colour-banding used in real banknote printing (not gradients as such but specially mixed bands of colour inked onto up to 4 offset plates for each side of the note) makes line work extremely difficult to produce.
You can do guilloches with blends, repeat rotations and all kinds of distortions, but getting them to "ink" properly in 4 separations using gradated bands of colour is extremely complicated. It will cost you much hard work to produce a passable semblance of a banknote if you use only Illy.
You mention cross-hatching in a portrait. This again is fiendishly tricky to reproduce in Illustrator because engraved lines in intaglio are not of a constant weight. You can get part of the way using various brush strokes, but frankly I would advise you not to attempt it unless you are prepared to spend several weeks doing the job. It takes a skilled engraver up to three months to do a good portrait (with a burin on a steel plate, a few lines per day). I have always sent photographs or detailed pencil drawings to the engravers. Specialized applications are available that can produce a semblance to hand engraving, but they are really not very good and the outcome invariably involves a lot of manual tweaking. If you are good at drawing it might even be better to do the portrait by hand, but copying the style of engraved lines is very tricky unless done in considerable oversize.
May I suggest that it is considerably easier to produce colour banding effects using gradients in Photoshop. Copy Illy line work into Photoshop, lock layer transparency and colour with gradients. To do things correctly you will need 4 gradients - one for each offset separation plate - for each side of the note. Calculating the colour range for each plate will prove much more work that you suspect. And remember that each gradient should run the whole width of the note and only horizontally.
Depending on how real you want your "banknote" to look I suspect you need to study security printing carefully before you embark on this job.

Similar Messages

  • Hello. It can be a iPhone4 accessories for the one with pictures and other things are transferred wirelessly to a TV? Thank you

    Hello. It can be a iPhone4 accessories for the one with pictures and other things are transferred wirelessly to a TV? Thank you 

    You need an Apple TV to be able to wirelessly send pictures etc. from iPhone.
    However you can buy an adapter if you want to connect to a TV
    http://store.apple.com/us/product/MC953

  • Help with treemap and other stuff

    hi guys..
    i m new to this forum..
    and this is my first post....so if i act a little naive .....please bare with me.
    and if this is not the correct place to post ..i m sorry for that.
    i have an assignment to submit....i m getting the whole picture ....but not sure how to go about implementing it.
    here it is...
    Write an Object Oriented solution to the problem in Java. The solution is to consist of:
    A TableIndex class
    A TableNavigator Interface
    A data row class ....class that i have to create.
    An application class to use and test your TableIndex class
    The following UML class diagrams show the public methods of the classes. Other methods may be specified. Specify data members, inner classes and interfaces as appropriate.
    TableIndex Class
    The TableIndex class is an index to a collection of objects. The class is to approximate an index to a data table in memory that consists of a number of rows. To control access to the index a current row is defined that specifies the row that can be accessed. To retrieve a row from the index it must be the current row. The get() method is the only method in TableIndex class that retrieves a row from the index. The current row can be changed explicitly using the methods: previous(), next(), first(), last(), gotoBookmark and find(K); and implicitly using insert(K, V), modify(K, V) and remove().
    The TableIndex class is to be implemented using the java API's TreeMap class and must use Generics. The data types K and V below are generic types for the Key and Value (row) respectively. An important aspect of the assignment is using the Java API documentation to understand the TreeMap class.
    guys ....can u plz help with the starting bit ..
    what should be the opening statement of the class...
    public class TableIndex<K , V> .....????
    and what should be the treemap declaration..??
    TreeMap<K , V> indexTable = new TreeMap<K , V>();...???
    i m confused....
    can u plz explain to me..

    hi mate.....didnt quite get you..
    can u plz be a bit more simple in explanation..!!!
    i will post the whole question ..so that anyone reading will understand better....
    Problem Description
    You are to develop an index class and associated classes.
    Requirements
    Write an Object Oriented solution to the problem in Java. The solution is to consist of:
    A TableIndex class
    A TableNavigator Interface
    A data row class
    An application class to use and test your TableIndex class
    The following UML class diagrams show the public methods of the classes. Other methods may be specified. Specify data members, inner classes and interfaces as appropriate.
    TableIndex Class
    The TableIndex class is an index to a collection of objects. The class is to approximate an index to a data table in memory that consists of a number of rows. To control access to the index a current row is defined that specifies the row that can be accessed. To retrieve a row from the index it must be the current row. The get() method is the only method in TableIndex class that retrieves a row from the index. The current row can be changed explicitly using the methods: previous(), next(), first(), last(), gotoBookmark and find(K); and implicitly using insert(K, V), modify(K, V) and remove().
    The TableIndex class is to be implemented using the java API's TreeMap class and must use Generics. The data types K and V below are generic types for the Key and Value (row) respectively. An important aspect of the assignment is using the Java API documentation to understand the TreeMap class.
    TableIndex
    +TableIndex()
    +TableIndex(name: String, comp: Comparator)
    +getName(): String
    +isEmpty(): Boolean
    +size(): Integer
    +hasPrevious(): Boolean
    +hasNext(): Boolean
    +previous()
    +next()
    +first()
    +last()
    +setBookmark(): Boolean
    +clearBookmark()
    +gotoBookmark(): Boolean
    +contains(key: K): Boolean
    +find(key: K): Boolean
    +get(): V
    +insert(key:K, value: V): Boolean
    +modify(value: V): Boolean
    +modify(key: K, value: V): Boolean
    +remove(): V
    +iterator(): Iterator
    +equals(obj2: Object): Boolean
    +toString(): String
    Additional Notes:
    The table index has an order defined by the compareTo method of the key's class or by the compare method specified in the class that implements the Comparator interface.
    getName(): the name of the index, blank by default.
    isEmpty(): returns true if there aren't any rows in the table index
    size(): returns the number of rows in the table index
    hasPrevious(): returns true if there is a row before the current row.
    hasNext(): returns true if there is a row after the current row in sequence.
    previous(): if there is a row before the current row, move to the row and make it the new current row.
    next() if there is a row after the current row, move to the row and make it the new current row.
    first(): if the table isn't empty, move to the first row and make it the new current row.
    last(): if the table isn't empty, move to the last row and make it the new current row.
    setBookmark(): sets a bookmark at the current row. If the bookmark is successfully set the method returns true. The bookmark is cleared if the TableIndex is empty or the row the bookmark was set on is deleted..
    clearBookmark(): sets the bookmark to null, indicating there isn't a bookmark.
    gotoBookmark(): if a bookmark has been set, go to the bookmarked row. If successful the book marked row becomes the current row and the method returns true.
    contains(K): return true if a row with the key specified exists.
    find(K): if a row is found with the specified key, the current row is set to the row found.
    get(): returns the current row. Null is returned if there isn't a current row.
    insert(K, V): inserts a row (value) with the key specified. The key must not be null and must be unique (not already in the TableIndex). The row (value) must not be null. If the row is successfully inserted true is returned, and the row becomes the current row..
    modify(V): change the current row's data to the row (value) specified. The key and the current row key are to remain the same. If successful true is returned.
    modify(K, V): change the current row's key and data to the key and row (value) specified. If successful the changed row becomes the new current row. If successful true is returned. Note: this is more difficult than modify(V).
    remove(): remove the current row. When a row is deleted the next row (if available) becomes the current row, otherwise if there isn't a next row the previous row becomes the current row, otherwise the table is empty therefore the current row is null.
    iterator(): returns an iterator to the rows (values) in the index. The rows are to be retrieved in order. The remove method does not need to be implemented (its method body can be empty)..
    the equals method uses the name, and the rows (values) in order when testing for equality.
    the toString method should return appropriately formatted data members and the rows (values/data) in the index.
    TableNavigator Interface
    «interface»
    TableNavigator
    +isEmpty(): Boolean
    +hasPrevious(): Boolean
    +hasNext(): Boolean
    +previous()
    +next()
    +first()
    +last()
    +contains(key: K): Boolean
    +find(key: K): Boolean
    Additional Notes:
    The TableIndex class implements the TableNavigator Interface.
    The purpose of the above methods is outlined in the TableIndex class.
    Your Data Row Class
    You are to include a class of your own to represent a row of data in the TableIndex. This is not to be a class that was covered in other programming subjects. It does not need to be complex but must include a range of data types. This class will be used to test your TableIndex class. The class should have an appropriate name and deal with something of interest to you.
    Your Application Class
    The application class is to make use of the TableIndex class and your data row class. It is to clearly show how the TableIndex class is used, and in doing so, test it. The class should have an appropriate name. The application class should create two indexes of different key data types. One of the indexes must make use of the Comparator interface to have a key that is in descending order.
    Output
    Output in the test classes/programs is to go to standard out or a text file. There should be no output from the TableIndex class or your data row class. A GUI interface is NOT required. There is no need to input data from the keyboard or file. Use the Unix script command or write output to a text file (etc) to provide example runs of your test programs.

  • Xfi Xtreme Audio Problems with Microphone and other things NEED HELP!!!!

    ? Alright i have exhausted my search for an answer for my problems.... This is a last resort now!
    Im running Windows 7
    st Problem: I was having problems with my microphone where people heard themselves through my microphone. Ok well i have a creative Fatility series headset with a supposed noise canceling mic. So last night i was like screw it imma put in the install disk for my sound card Xfi Xtreme Audio.
    This Arose my 2nd Problem: Now that the drivers were installed and i finaly got a volume panel it says im running Windows Vista. The name next to my card says Sound Blast X-Fi Xtreme Audio (Vista). Alright so i am running windows 7.... What the heck! Next thing is my microphone doesnt even work! This is just awsome btw and im pretty sure the volume panel isnt even the way it was when i was on an XP system.
    So if anyone has a fix to this problem let me know it would be great!

    A quick update i was able to fix Problem 2, i had to get rid of what i installed so im just back to Problem . I dont have the VOlume Panel anymore but my microphone still seems to make it so that people can hear themselves....

  • Artist Names: Help with "The" and other small words.

    I would like to know how to make my iTunes recognize "The Who" as "Who (The)" but I don't want it to say Who, The in my library. How do I do this?

    You will want to refer to this article in the Apple Knowledge Base which explains the new sorting rules that have been introduced in recent versions of iTunes.
    To workaround it, you will have to make use of the also recently introduced Sorting tab that is described at the bottom of the above-referenced article.
    You can get "The Who" sorted as "Who" by entering Who in the Artist Sort field.
    Information you enter in the Sort fields will not change what is displayed for those items, only how it is sorted.

  • Hi - I am a new iPad user - I am trying to sync/transfer my iTunes and other things from my PC to my new iPad - I purchased a cable for it today - still stuck on how to do it!  Please HELP! :)

    Hi - I am a new iPad user - I am trying to sync/transfer my iTunes and other things from my PC to my new iPad - I purchased a cable for it today - still stuck on how to do it!  Please HELP!

    Syncing with iTune
    http://support.apple.com/kb/HT1386

  • Nice to see 13" retina but it has only Intel HD Graphics 4000 and does not have NVIDIA GeForce GT 650M with 1GB of GDDR5 memory card. How it will affect the speed, performance and other things compared to 15" retina where NVIDIA GeForce card is available.

    Nice to see 13" retina but it has only Intel HD Graphics 4000 and does not have NVIDIA GeForce GT 650M with 1GB of GDDR5 memory card. How it will affect the speed, performance and other things compared to 15" retina where NVIDIA GeForce card is available.

    The 15" Retina's will have better performance than any 13" Retina. Not only do the 15" machines have dedicated GPU's, but they also have quad-core processors, whereas the 13" Retina's only have dual-core processors.

  • Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.

    Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can;t see a symbol for address book.

    Where are addresses kept on MAIL?  I don;t like the new format at all. Frances
    Begin forwarded message:
    From: Frances Topping <[email protected]>
    Subject: Re: - Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.
    Date: August 25, 2014 at 9:46:01 AM EDT
    To: discussions-replies <[email protected]>
    Old Entourage is POP and new Mavericks MAIL  is IMAP I believe. I don;t know how to export in the forms you mention. Frances

  • I am having trouble with my mac book air. I think I have a virus because everytime i click on a link it openes up popup windows and other things. How do I reset teh computer?

    I am having trouble with my mac book air. I think I have a virus because everytime i click on a link it openes up popup windows and other things. How do I reset teh computer?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • When is Apple going to start working with ADOBE and let us enjoy some videos and other things on our beloved iPads and iPhones?

    When is Apple going to start working with ADOBE and let us enjoy some videos and other things on our beloved iPads and iPhones?

    How totally clueless can one be?
    Apparently not more than you.
    Adobe has given up on mobile flash for any device. They announced this a while ago.
    They admitted mobile flash is a disaster and are jumping on the HTML 5 bandwagon.
    Adobe has moved on, why can't you?
    http://www.technobuffalo.com/mobile-devices/adobe-announces-the-end-of-flash-pla yer-for-mobile-devices/
    http://latimesblogs.latimes.com/technology/2011/11/adobe-to-end-mobile-flash-plu g-in-development.html

  • HT3606 I have Mac OS X version 10.5.8 and so im wondering what is the next step i need to get. i have tried to get snow leopard and other things and not having any lukck . can any one help me out pls.

    I have Mac OS X version 10.5.8 and so im wondering what is the next step i need to get. i have tried to get snow leopard and other things and not having any lukck . can any one help me out pls.

    If your Mac meets these requirements:
    http://support.apple.com/kb/SP575
    then you can order a Snow Leopard disk and install it.
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    Ciao.

  • Problems with initial set up for mail and other things

    I am having issues with mail set up and getting printers and other things work with Mac Pro Book, since i am new convert i am feeling really frustrated with these things, anyone out there has experince in mac mail set ups and other instatlations like msn messanger etc.

    Sorry you are having problems but you need to provide more detailed information about the problems such as what type of email account are you trying to set up in Mail - .Mac, IMAP or POP and is this account provided by your ISP used for connecting to the internet or by an email account provider?
    What happens including error messages provided when trying to create the email account in Mail?
    Regarding a printer problem, this is the Mail & Address Book forum. You should post a question about printer issues with detailed information such as the make and model of your printer and what you have tried to this point at the Printer & Faxing forum here.
    http://discussions.apple.com/forum.jspa?forumID=756
    Installing MSN Messenger should be easy. I believe Messenger does not include an installer and is provided as package via a disk image that only requires dragging the application from the mounted disk image to your Applications folder which copies the application package from the mounted disk image to your hard drive.
    What problems are you having with installing Messenger?

  • My computer is stuck on loading screen with logo and spiny thing

    Hi my dads friend gave me his old iMac it was the computer and mouse no keyboard and it stuck on loading screen with logo and spinny thing he said it could be curruption in the software or chip out a few millimeters or something with the hard drive any help?? Please

    I'm having some difficulty in understanding you.   What is mdnsresponder?   How can you edit files if you can't get past the blue screen?   What are you using to post these messages on the forum?
    Let me suggest the following and see how you go.
    Do you get the ‘Orchestral’ start up tone when you power up?
    You might try this.
    Shut down the machine.
    Disconnect the power cable.
    Wait about 15 seconds
    Reconnect the power cable.
    Wait a few more seconds.
    Press the power button to restart.
    If there is no change ...
    Try to start the system in Safe Mode.   You can do this by restarting the machine and holding down the shift key as soon as your hear the start up tone.
    More information on >>>      http://support.apple.com/kb/HT1455
    If the system boots in Safe Mode you could have a software issue and may need to reinstall the OS.    Which is why I asked if you have or can get the original DVD.

  • Problem with youtube and other video websites

    I have a problem with youtube and other video websites:
    Everything is up to date (flash, FF, my plug ins..) but i keep getting freezes when the video loads. I can hear sound but i can only see the first frame of the video.
    I've reinstalled flash/firefox or tried updating them again for about 4 times now and my cookies/cache has also been errased which i usually don't do. If i enter FF's safe mode it also freezes.
    I hope someone could help out, i've searched for answer on google before and tried everything i saw but it didn't helped.
    grts,
    agrash

    Hmm, so that person had a conflicting plug in.
    Problem is that whenever i enter firefoxes safe mode which disables every plug in, i still have the youtube freeze/crash

  • Help with writing and retrieving data from a table field with type "LCHR"

    Hi Experts,
    I need help with writing and reading data from a database table field which has a type of "LCHR". I have given an example of the original code but don't know what to change it to in order to fix it and still read in the original data that's stored in the LCHR field.
    Basically we have two Function modules, one that saves list data to a database table and one that reads in this data. Both Function modules have an identicle table which has an array of fields from type INT4, CHAR, and type P. The INT4 field is the first one.
    Incidentally this worked in the 4.7 non-unicode system but is now dumping in the new ECC6 Unicode system.
    Thanks in advance,
    C
    SAVING THE LIST DATA TO DB
    DATA: L_WA(800).
    LOOP AT T_TAB into L_WA.
    ZDBTAB-DATALEN = STRLEN( L_WA ).
    MOVE: L_WA to ZDBTAB-RAWDATA.
    ZDBTAB-LINENUM = SY-TABIX.
    INSERT ZDBTAB.
    READING THE DATA FROM DB
    DATA: BEGIN OF T_DATA,
                 SEQNR type ZDBTAB-LINENUM,
                 DATA type ZDBTAB-RAWDATA,
               END OF T_TAB.
    Select the data.
    SELECT linenum rawdata from ZDBTAB into table T_DATA
         WHERE repid = w_repname
         AND rundate = w_rundate
         ORDER BY linenum.
    Populate calling Internal Table.
    LOOP AT T-DATA.
    APPEND T_DATA to T_TAB.
    ENDLOOP.

    Hi Anuj,
    The unicode flag is active.
    When I run our report and then to try and save the list data a dump is happening at the following point
    LOOP AT T_TAB into L_WA.
    As I say, T_TAB consists of different fields and field types whereas L_WA is CHAR 800. The dump mentions UC_OBJECTS_NOT_CONVERTIBLE
    When I try to load a saved list the dump is happening at the following point
    APPEND T_DATA-RAWDATA to T_TAB.
    T_DATA-RAWDATA is type LCHR and T_TAB consists of different fields and field types.
    In both examples the dumps mention UC_OBJECTS_NOT_CONVERTIBLE
    Regards
    C

Maybe you are looking for