Creating a stamp border for logo

Hi all,
I would like to create the wavy border as shown on the cup:
http://payload.cargocollective.com/1/1/40912/894199/vasoybolsa0_750.jpg
Be great if someone can direct me to a tutorial.
Thank you

That was probably done in a vector drawing program like Adobe Illustrator.
You can probably get something close to that in Photoshop using the Polygon Shape Tool. Set its side for how ever many bumps your want (say 32?).
Set it to Star, Smooth Corners, Smooth indents with 10% or so indent sides?

Similar Messages

  • Create a black border for select list item

    Need help on creating border on a select list item.
    I tried using style ="border:1px solid black"; in HTML Form Element Attribute , but its not working for select list item, though it works on text field item.
    Nilesh

    Browsers and versions? (Always supply this information when discussing presentation and UI problem.)
    If it's IE, then this is not possible (at least up until IE7 which is all I can test on at present).
    (As HTML, CSS and JavaScript exist outside of APEX, you should search more widely than just OTN when looking for information on these topics.)

  • How to create a border for a paragraph ?

    Can anyone tell me how to create a border for a paragraph ? Is this even possible without creating a table ?
    I would like to have the page header with a single line below it and the page footer with a single line above it. Inserting a line seems to force unnecessary space above of below the line and using a table seems to force a blank line below the table also creating unnecessary space.
    Thanks

    Thanks, I had the problem with this approach that the line never appeared on each page but adding to the section master would fix it.
    Still being able to set a border would be good! I did try using the text box but the border options are pretty inflexible. I was unable to just set the top or bottom borders. Did I miss something basic here or is this option just not available ?
    Any idea if this is coming in a future release ?

  • Create border for page in Illustrator

    I have an old high resolution photo scan saved as an AI file. I want to create a black border around this photo or file. Any suggestions? Roger....

    Draw a rectangle and apply a black stroke?

  • Create a white border around round object

    Hi there,
    I am a relative newbie to photoshop - I am trying to create a border around a logo that has rounded edges. I have used to stroke tool and it creates the border. However, when I try and save it and use it it still has square edges.
    How do I get rid of the square edges and make sure that you only see the rounded border?
    Thanks!

    Images are created with square pixels and so all image formats are either square or rectangular.
    What you need to do is create a transparent background for your round logo with border.
    Then you need to save it in a image format that supports transparency. (hint: jpegs don't support transparency)
    Quick way to do this is double click the background layer in the layer panel to unlock it. (assuming you only have 1 layer?)
    Then select the area outside your logo that you want to make transparent and hit the delete key.
    You should see a checkerboard pattern. This pattern is only to to show you that this area is transparent, it won't print as a checkerboard.
    It also depends on how the image is being used as not all applications support transparency.

  • Creating a Stamp with Check boxes

    I need to create a Stamp that has check boxes that a user can fill in by clicking on them once the stamp is placed.
    I can create the forms and everything on the PDF that I am making into the stamp and they work just fine.
    But when I add that PDF as a custom stamp the forms for the Check Boxes and Text fill go away.
    How do I make it where those forms carry over into the new custom stamp and make it so the users can click on the forms to check the boxes or fill in the text?
    Thanks!

    Hi regularflavor,
    Custom dynamic stamps have been coming up more and more lately- people in many industries want fields, checkboxes, pulldowns, company logos, etc to replace rubber ink stamps.  Creating them is not a trivial task and requires some basic understanding of how stamps work in Acrobat.  If you are interested in learning how to develop custom dynamic stamps, you may want to consider a membership to www.pdfscripting.com  We've been adding lots of content on stamps over the last couple months- sample stamp files, a full series of articles with step by step instructions, and a new training video on how to copy dynamic features between stamp files.
    http://www.pdfscripting.com/public/department53.cfm
    It's not free, but is the most comprehensive set of content available on custom dynamic stamps for PDFs.
    Dimitri
    WindJack Solutions
    http://www.pdfscripting.com
    http://www.windjack.com

  • How can I make a default border for a JWindow?

    I have a JWindow object that is created when a button is pressed in a JFrame. I want the JWindow to have the same type of border as the JFrame from which it's created. However, the JWindow is not created automatically with a border as the JFrame is, so I don't know how to set the border abstractly so that whatever border is used for the JFrame, per he default L&F, will also be used for the JWindow.
    I tried grabbing the border object from the JFame instance itself, but there is no such field in JFrame or any of its ancestor classes. I looked at UIDefaults, but I have no idea how this class can be used to get what I want. For example, if I use UIDefaults.getBorder(Object obj), what do I specify for the argument?
    I'd be happy with an abstract or a concrete solution. That is, either using the default Border for top level containers in the current L&F, or by grabbing an actual Border instance from a JFrame object.
    -Mark

    Also, I'm curious why you said that JFrame is not a swing component.A Swing component extends JComponent. Basically this means that all the painting of the component is done in Java. You can add Borders to any Swing component. It is called a light weight component. A light weight component cannot exist by itself on the window desktop.
    JFrame, JDialog and JWindow are top level components. They can exist on their own on the windows desktop because essentially they are Windows native components. They have been fancied up to make it easy for you to access and add other Swing components to it which is why they are found in the swing package.
    A Windows border is not the same thing as a Swing Border and there is no way to access the native windows border and use it in a Swing application (that I know of anyway). Swing Borders are not used in a normal JFrame, the Windows border is used. You can however, turn off the use of Windows decorations and use Swing painted decorations. Read the tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/frame.html#setDefaultLookAndFeelDecorated]Specifying Windows Decorations. However, this doesn't really help you with your Border problem. If you look at the source code for the FrameBorder, you will find that the "blue" color of the Border is only painted for "active" windows and a JWindow can never be the active window, only the parent JFrame or JDialog is considered active.
    Here is a simple program for you to play around with:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class FrameDecorated
         public static void main(String[] args)
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.DISPOSE_ON_CLOSE );
              frame.setSize(300, 300);
              frame.setVisible(true);
              Border border = frame.getRootPane().getBorder();
    //          Border border = UIManager.getBorder( "RootPane.frameBorder" );
              System.out.println( border );
              JWindow window = new JWindow(frame);
              JPanel contentPane = (JPanel)window.getContentPane();
              contentPane.add(new JTextField(), BorderLayout.NORTH);
              contentPane.setBorder( border );
              window.setSize(300, 300);
              window.setLocationRelativeTo( null );
              window.setVisible( true );
              System.out.println("Window:" + window);
              Window ancestor = SwingUtilities.getWindowAncestor(contentPane);
              System.out.println("Ancestor:" + ancestor);
              System.out.println(ancestor.isActive());
              System.out.println(frame.isActive());
    }

  • Creating custom stamps in Acrobat 9

    I'd like to create some stamps that will give an approval status as well as giving the name of the reviewer and the date and time, similar to the default dynamic stamps but with different wording.
    I've managed to create a stamp and add it to the palette, however I can't get it to display the name of the reviewer or the time and date.
    Can you help?

    You have to make a dynamic stamp.
    See http://www.acrobatusers.com/tutorials/2007/custom_dynamic_stamp/ for a dynamic with with a field is not interactive. See http://www.acrobatusers.com/tutorials/2007/dynamic_stamp_secrets/, for a dynamic stamp with an interactive field prior to placement.

  • Can I create a page border using Adobe Acrobat Pro 9?

    I'm making a certificate of completion and would like to create a page border.  Is there any way to do this is Adobe Acrobat Pro 9?

    If what you want to do is scale a page down to a smaller size, Acrobat doesn't do that, not directly anyway. I think there are plugins for Acrobat that can do this.
    if you're desperate and/or don't want to go to that expense, there is a hack available in Acrobat that can get you there. If you've added other interactive elements (links, bookmarks, etc.), you'd have to recreate them. Post again, preferably in a new topic (since it doesn't apply to this one), for more info.

  • Adapter Status Error :  Error in creating message ID map for JMS message:

    Currently in the SAP XI 3.0 JMS Adapter, I am receiving the following error
    Error in creating message ID map for JMS message:
    ie. Error while processing message 'de8265f6-c864-4479-1137-9bab17b78b3b';  detailed error description: com.sap.aii.adapter.jms.api.channel.filter.MessageFilterException: Error in creating message ID map for JMS message: ID:c3e2d840d8d4d7f14040404040404040c44f8e2213630b01 at com.sap.aii.adapter.jms.core.channel.filter.InboundDuplicateCheckFilter.filter(InboundDuplicateCheckFilter.java:103)
    Although I am receivng this error, when I check the details of the message processing, all steps are successful and the message is set to status : DLVD
    Audit Log for Message: de8265f6-c864-4479-1137-9bab17b78b3b
    Time Stamp     Status     Description
    09.06.2009 13:27:24     Success     New JMS message with JMS message ID ID:c3e2d840d8d4d7f14040404040404040c44f8e2213630b01 received. The XI message ID for this message is de8265f6-c864-4479-1137-9bab17b78b3b
    09.06.2009 13:27:24     Success     JMS message converted to XI message format successfully
    09.06.2009 13:27:24     Success     RRB: entering RequestResponseBean
    09.06.2009 13:27:24     Success     RRB: suspending the transaction
    09.06.2009 13:27:24     Success     RRB: passing through ...
    09.06.2009 13:27:24     Success     RRB: leaving RequestResponseBean
    09.06.2009 13:27:24     Success     Transform: using Transform.Class: com.sap.aii.messaging.adapter.Conversion
    09.06.2009 13:27:24     Success     Transform: transforming the payload ...
    09.06.2009 13:27:24     Success     Transform: successfully transformed
    09.06.2009 13:27:24     Success     Application attempting to send an XI message synchronously using connection JMS_http://sap.com/xi/XI/System.
    09.06.2009 13:27:24     Success     Trying to put the message into the call queue.
    09.06.2009 13:27:24     Success     Message successfully put into the queue.
    09.06.2009 13:27:24     Success     The message was successfully retrieved from the call queue.
    09.06.2009 13:27:24     Success     The message status set to DLNG.
    09.06.2009 13:27:25     Success     The application sent the message synchronously using connection JMS_http://sap.com/xi/XI/System. Returning to application.
    09.06.2009 13:27:25     Success     The message was successfully transmitted to endpoint http://sapxia.swets.nl:8000/sap/xi/engine?type=entry using connection JMS_http://sap.com/xi/XI/System.
    09.06.2009 13:27:25     Success     The message status set to DLVD.
    Not sure why this is occurring.......

    No, not using correlation id.
    I was able to resolve the issue on this queue by changing the following setting
    Under the PROCESSING tab, under XI SETTINGS
    Time period for Duplicate Check for EO(IO) (secs) it was set to 86400
    I have changed this to 300 seconds and the adapter has now gone green.
    BUT......
    That said, I have the exact scenario on another sender JMS channel set to 300 seconds and it exhibits the same issue.
    correlation settings:
    Set XI message id  to  = GUID
    Set Xi conversation

  • Create custom stamps - where do I find this in X?

    Hello,
    Just recently upgraded from Acrobat 9 Professional to X Pro and can't find where the custom stamp command is now located.  This is something I use frequently in my work - either QC stamps or design info stamps on plan drawing pdf - where I create the stamp information in Word, convert to pdf, then pick up and use the information in Stamps (Create or Manage).
    This revision (from 9 to X) is pretty radical, compared to previous upgrades, and requires almost relearning the entire program. A huge loss of time, so hopefully once I'm up to speed it will be faster/more streamlined than previous versions.  Hopefully.
    Thanks in advance for any illumination on where to find this feature!

    Hi, Dave,
    Your note made me realize that all my custom stamps are gone after my upgrade.  Upgrades are done by the IT department, and I didn’t think to save my stamps, so I can’t check to compare. Dang. It’s not a huge deal, ultimately – creating in 9 was easy, and recreating them will give me experience in X.
    I did notice something of what you describe when creating a custom stamp for a coworker while I was still on 9; his computer already had the X upgrade, and I noticed the stamp was cut off in the Custom Stamp drop down menu in X, though it stamped correctly on the document. Because this was only one/one time I didn’t take much notice of it, but it corroborates what you describe.
    Maureen Finn
    Transportation Coordinator
    www.hdrinc.com
    CONFIDENTIALITY NOTICE:  This e-email message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential, proprietary, and/or privileged information, as well as content subject to copyright and other intellectual property laws.
    If you are not the intended recipient, you may not disclose, use, copy, or distribute this e-mail message or its attachments. If you believe you have received this e-mail message in error, please contact the sender by reply e-mail, immediately delete this e-mail and destroy any copies.
    Prior to using this e-mail or any attachments for any purpose (including but not limited to design, presentation, incorporation into any other work), the intended recipient(s) must enter into a separate written agreement with sender, setting forth the scope and conditions of the recipient’s
    permitted use and addressing copyright and other intellectual property issues. Use of this e-mail or any attachments without acceptance of the foregoing is prohibited.  Any use of this e-mail or any attachments indicates recipient’s acceptance of the above statements and conditions without exception.

  • Using Bookmark Names to create Custom Stamps

    Hi all,
      I am a VB programmer that is struggling with a task in JS.  I am trying to do 1 of 2 things:  I would prefer #2.
    1.Create a custom stamp using the filename.
    or
    2.Create a custom stamp using the bookmark name (which in turn will be the filename)
    I have been foooling around for a number of hours trying to get this to work out, here's what I have done so far:
    I have created a stamp, the stamp has two text boxes that I need to fill from one string. The string is in the format of
    "08363-G-5109-DWG-R-00001_A.pdf" with a varying number of characters before the underscore, but always the same after the underscore. In the first text box I need
    08363-G-5109-DWG-R-00001 which I get with
    Code:
    event.value = event.source.source.documentFileName.slice(0,-6); this work great. The second box needs to contain the letter(s) that are between the "_" and the ".pdf" and everything I have tried doesn't produce a result.
    I focused most of my time trying to split the filename up, figuring the same logic would be applied to the bookmarks.
    The things I have tried:
    [CODE]
    var str = event.source.source.documentfilename;
    var strt = str.lastindexof("_");
    var end = str.lastindexof(".");
    event.value = str.substring(strt,end);
    and
    var arrStr = event.source.source.documentfilename.split("_");  ' **Harcoding = "08363-G-5109-DWG-R-00001_A.pdf" works**
    var arrstr2 = arrStr[1].split(".");                                             'But isn't very dynamic
    event.value = arrstr2[0];
    and
    var str = event.source.source.documentfilename;
    var arrStr = str.split("_");
    var arrstr2 = arrStr[1].split(".");
    event.value = arrstr2[0];
    [/CODE]
    Any assistance would be greatly appreciated!
    Bent

    GJ - The bookmark would be selected manually and the stamp would reflect the change.  The sole purpose of this is to combine and stamp hundreds of documents in the most efficient manner.
    So for example:
    I combine 3 docs by selecting them in Windows and right clicking and selecting combine:
    08363-G-5109-DWG-R-00002_A.pdf
    08363-G-5109-DWG-R-00002_B.pdf
    08363-G-5109-DWG-R-00002_C.pdf
    I would have 3 bookmarks automatically when the combination occurs:
    08363-G-5109-DWG-R-00002_A
    08363-G-5109-DWG-R-00002_B
    08363-G-5109-DWG-R-00002_C
    So when I select the bookmark 08363-G-5109-DWG-R-00001_A then click stamps - dynamic stamps , my two text boxes have used this bookmark to get                 Text 1                          Text 2
                                                                           08363-G-5109-DWG-R-00001     A
    Then I manually select the next bookmark and select stamp and it has used the next bookmark name to create a stamp  with two text boxes now              08363-G-5109-DWG-R-00002      B
    If I had to stamp them first them combine, I would have to open one, stamp, save close rinse and repeat 100 times then combine.
    GK - I did have a poke around with bookmarkRoot.children, but the only result I ended up with was the word "Root" in the second box.  I couldn't seem to determine if JS automatically builds the children collection based on the number of bookmarks off the root, or if I had to programmatically build it with an array.

  • Creating Custom Stamp

    Hello all.
    I am working on Adobe Acrobat 9 Standard. I am trying to create a custom stamp of my signature. When I import my signature , it shows up perfectly (reading horizontally, like I want it), but when I go to insert the stamp , it is rotating it 90 degrees clockwise for some reason (reading top to bottom). I know I can edit the stamp and make it horizontal again (reading left to right) but that is quite a hassle considering I use the stamp 6-10 times a day. I would really like to insert the stamp and just print the page. Does anyone have any ideas how to fix this or why the stamp is rotating.
    Thank you in advance.

    I figured it out!
    was having the same issue and it cost me half the morning at work.
    when i was creating the stamp, i needed some comments and markups added and to "flatten it" i was printing it to PDF and then croping the page to the size i wanted and then importing it as a stamp. anyway, when i was printing to pdf, in the print dialogue box, in the section "Page Handling", the option "Auto-Rotate and Center" was checked, this was forcing my stamp to be centered and the page orientation to be landscape. For kicks n giggles, I unchecked it, the page orientation changed to Portrait and my stamp image went to the upper left. I cropped my result as I normally would, and upon creating the new custom stamp, it was right as rain. hope this helps!

  • Cannot set border for JPanel

    I am not able to select any border for a JPanel, except <default>, in the property window of the visual designer. I can insert a statement by hand to get the border (e.g.: jPanel1.setBorder(new javax.swing.border.EtchedBorder());
    ), but I would like to do it with the visual designer. Is this a missing feature or do I do something wrong?
    Thank you
    Heinz

    You first have to make a Border object in your source code, then it will allow you to select the border.
    example:
    import javax.swing.border.*;
    public class MyFrame1
    // Create a border object in your class
    // Add this next line, and change it to
    // create the type of border you want.
    Border borderPanel1 = BorderFactory.createEtchedBorder();
    after this, you can use the inspector to set the border property (you should see borderPanel1 in the combobox of choices)
    Take Care,
    Rob
    null

  • Create an inset border Cs6 Photoshop

    Hi All,
    I cannot seem to figure out the steps to create an inset border, I used Windows edit for the example of what I desire.
    I would like to shown the steps to do this in Photoshop CS6 Please.
    Before:
    What I want... I used Edit in windows Paint to achieve this but one would think this should be as easy as Stroke and inset.. But I could not get it to work?

    In Photoshop, you would start with the Marquee Tool.
    I would move the Marquee cursor to where I want the border centered, and holding down the Option/Alt key, drag out.
    When you have the Marquee where you want it, use Edit > Stroke, where you can set the color and width of the stroke, and where around the marquee you want the stroke to go.
    As in your illustration, guides are best for placing your border. Having it on a separate layer gives you more flexibility.

Maybe you are looking for

  • Mail server no longer accepting incoming mail

    First off, let me just say that yes, I broke it. This is on an iMac G4 with Server 10.4.11. So here's the problem. I am by no means a qualified Server Administrator, but since I am a relatively knowledgeable computer geek, my boss plugged me into thi

  • Is it possible to precalculate web template when we used dropdown boxes

    Hi experts 1)Is it possibel to precalculate webtemplates when we use dropdowns in WAD? When I am doing precalculation it is precalculating only for 1st value in the dropdown and the remaining all values are not visible. If any one know how to do this

  • Mobile REstarting please advice

    Hi there i have a blackberry 9300 3g on T-mobile I have had this phone about 3 months and over the past month have had a few problems with my phone . The first problem is my mobile restarts itself as and when it will just be sitting there as it happe

  • GR/GI using tcode mfbf

    Hi pls help when i do GR/GI using tcode mfbf the error msg comes: CHECK table TFBEFU_CR: entry 10 does not exist.

  • Re: Name Service

    Hi, Do you know how to do it in Tool without redirecting stdout ? Daniel Nguyen Freelance Forte Consultant KALLAMBELLA Ajith wrote: > Yes. You can list the named objects using NameService agent commands using EConsole or Escript. Look into the System