Creating smooth, small circles

Hi! I'm trying to design some tiny navigational buttons that are round. They keep coming out "jaggedy." What is a good way to smooth them out? Thanks so much.
Julie

The best way would be to use the ellipse drawing tool in your tool bar if you can't find it that is because another vector drawing tool is selected, hold the box down and several options should appear. Make sure to hold the shift key when you are drawing to constrain the portrions. If you are having the jagged edge after you optimize it that is you file type choice. The best for web is PNG-8 or PNG-24 depending on how many colors and the level of transparency you need.
hope that helps

Similar Messages

  • Create smooth selections in PS from PAPER drawings ,convert to "smooth paths" then paste to AI

    *******Enhancement / FMR*********
    Brief title for your desired feature:
    selections converted to paths in PS, or AI.
    How would you like the feature to work?
    If you draw with hard edged brush or pen in PS and paste to AI , the trace tool in Ai works very well, for swirls, cartooning, hand drawn perspective illustrations etc,
    but if you draw on paper and take a photo, which I do with a camera connected to the pc because it saves a small file size jpeg automatically into bridge, 250kb average,
    and open it in PS, to do a magic wand selection of the lines, then refine edge to smooth and tighten it up. It looks great at this point,
    Then paste this selection of pixels to Ai for tracing to get crisp vector edges from the selected pixel outline,
    or convert the selection to paths first, then paste the paths into Ai,
    in both scenarios the resulting trace outline has many jaggy edges, even if pasted into PS as paths, since the paths created in PS from the smoothly made selection still capture any diagonal pixelated edge even if the image is 300ppi and results in showing all the jaggies.
    I have tried all the trace settings and variables in AI, from simple through to photoreal.Even if you expand these traced results and use the pathfinder shapemode / unite it still creates crinkle edges. Which results in an hour plus of work redrawing the whole thing.might aswell just use the pen tool to start with.
    Trying to use the path/simplify tool is not useful as it smooths out all your shapes and changes the contours of the path too much regardless of angle threshold or curve precision, and the smooth function on the pencil tool changes the paths too much too when trying to smooth out the "jaggies" lines.
    I`ve tried creating a "shape" out of the path in PS but its also jaggy as it just replicates the path already made.
    tracing with the freeform pen tool in ps is faster than pen but creates uncontrolled edges.
    ** I was hoping there could be a setting to convert the selection to a vector path minus the jaggies or crinkles that occur on round or diagonal parts of the selection.
    Why is this feature important to you?
    allows me to freehand sketch on paper, create a selection in PS, convert to path, and paste that vector path into AI , problem is its a jaggy path,
    image below is selection in PS
    Convert to paths in PS, captures all the jaggies and crinkles,
    this sample is hand drawn,
    I smoothed and tightened the edges in "refine edge" in PS below. It looks to create a nice contour,
    however converting to paths gets in very close and still picks up jaggies, due to the pixel build of imagery.
    the result after refine edge dialogue below, I fill with green to copy paste this selection to AI, could also have pasted the channel but chose this, does same result anyway
    in Ai below, regardless of trace type, it produces either uneven edges that dont match the pixel contours or if I make a 6 or 16 colour trace or photoreal it creates many jaggied bumpy edges, as I said earlier if I unite it all with path finder I still have to redo all the contours with pencil, the path/simplify command ruins the outlines shapes and corner points. MIght as well just start with pen tool in this case, the long but sure route.
    However I`m hoping Adobe can create a formula for this purpose, to get that smooth selection to be a smooth path instead of jaggy bumpy. not sure if I`m making any sense here... is this understood?

    the formula could be written to connect the inside corners of the selection steps with a smooth vector line on concave turns (if your viewing the selection from outside the shape, like a "dip" or valley,  and the  vector line would change to connect the outside of each step corner on convex turns (mounds or lumps, "hills") viewed from outside the selected shape. Then this result smoothed to create smooth transition for the vector line.
    Like a very tight fit smooth moving average on a stock chart, but perfectly fit to the data as there is no time lag. perhaps look at wavelets, but respecting mitres, I`m not a maths person or programmer but have seen some things that made me consider these,
    anyway this tool would speed up my work in PS and AI if possible,,thanks,,

  • I purchased a song on iTunes and it is displayed in my list of SONGS.  However, when I try to add to my iPhone 4, it displays with a small circle of dots to the left of the song title and will not play.  How do I get this song onto my device?

    I purchased a song on iTunes and it is displayed in my list of SONGS.  However, when I try to add to my iPhone 4, it displays with a small circle of dots to the left of the song title and will not play.  How do I get this song onto my device?

    Hi TKCDM1!
    You should try to get this purchase onto your iOS device by using the suggestions in the following article:
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht2519
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Creating a small HTML-Editor using JEditorPane

    Hello! I'm trying to create a small HTML-Editor. Via this editor users shall be capable to create formatted text (bold, italic, underlined, different sizes, different fonts, different colors). Furthermore, if the user pushes the enter-button a new line-break (<br>) shall be inserted. Basically my editor is working but with some big problems:
    1. When I create an instance of my editor, I initialize it with some html-code.
    this.m_EditorPane.setText("<html><head></head><body></body></html>"); Without this initialization between the <body> and </body> <p> and </p> will be inserted, what I don't want. But if I push now the enter-button at the beginning, <br>-tag will not be inserted in the <body>-area but in the <head>-area.
    2. Styling text is working really good, but when I insert a line-break (via enter-button), the <br>-tag is inserted after the (e.g.) closing bold-tag (</b>). So, in the next line, this style-property must be reselected.
    Can anybody help me to change this behavior?
    Kind regards, Stefan
    P.S. The way I insert the <br>-tag:
    JEditorPane editor = getEditor(ae);
    HTMLDocument doc = getHTMLDocument(editor);
    HTMLEditorKit kit = getHTMLEditorKit(editor);
    editor.replaceSelection("");
    int offset = editor.getCaretPosition();
    kit.insertHTML(doc, offset, "<br>", 0, 0, HTML.Tag.BR);
    editor.getCaret().setDot(editor.getCaretPosition());P.P.S. Sorry for my bad english :-/

    Hello! I'm trying to create a small HTML-Editor. Via this editor users shall be capable to create formatted text (bold, italic, underlined, different sizes, different fonts, different colors). Furthermore, if the user pushes the enter-button a new line-break (<br>) shall be inserted. Basically my editor is working but with some big problems:
    1. When I create an instance of my editor, I initialize it with some html-code.
    this.m_EditorPane.setText("<html><head></head><body></body></html>"); Without this initialization between the <body> and </body> <p> and </p> will be inserted, what I don't want. But if I push now the enter-button at the beginning, <br>-tag will not be inserted in the <body>-area but in the <head>-area.
    2. Styling text is working really good, but when I insert a line-break (via enter-button), the <br>-tag is inserted after the (e.g.) closing bold-tag (</b>). So, in the next line, this style-property must be reselected.
    Can anybody help me to change this behavior?
    Kind regards, Stefan
    P.S. The way I insert the <br>-tag:
    JEditorPane editor = getEditor(ae);
    HTMLDocument doc = getHTMLDocument(editor);
    HTMLEditorKit kit = getHTMLEditorKit(editor);
    editor.replaceSelection("");
    int offset = editor.getCaretPosition();
    kit.insertHTML(doc, offset, "<br>", 0, 0, HTML.Tag.BR);
    editor.getCaret().setDot(editor.getCaretPosition());P.P.S. Sorry for my bad english :-/

  • Creating a small business website...

    Hello! I would like to create a small business website using iweb. I created something simple, and I am happy with it, but I was wondering if anyone knew how I could use it with a regular website address (www.company.com) instead of web.mac.com/company and still use iweb. Any tips or advice would be great. Thanks!

    http://www.varkgirl.com/iWebFAQ/FAQ%20Home/EFC18081-F59F-4EEA-AA5F-0DB97AAA30D6. html

  • Creating a small "o" with a dash over it??

    I'm using IDCS2 on a PC and need to know how to create a small "o" with a horizontal dash over the "o". I'm doing a story for a product named Zon that has a dash over the "o" so it's pronounced Zone. I have a character reference chart for Windows using keyboard strokes and has all sorts of different "o" characters but not one with a dash.
    Word has the character available but when I paste the story into InDesign, the "o" with the dash disappears. The only way I can accomplish what I need that I can see is to wait until the story is finalized then actually draw a dash. ?????
    Any ideas how to get the actual "o" with a dash character into InDesign?

    ..  I can't say I ever tried to use combining accents ..
    It's not something you can try on for size, the font has to contain them.
    Accents come in two distinct flavours: combining and non-combining (aka. non-spacing and spacing -- the other way around). The non-combining usually are centred in a half-em space, with that half-em being its character width. Typing them will insert them to the right of your base character, 'above' an empty space. As Scott shows, you need to move the accent to the left by eye.
    The combining ones, on the other hand, have a zero width and are drawn on the left hand side of 'empty space'. If you insert them right after a base character, this accent will automatically appear above this character. It is not perfect because the font designer has to decide which character width to base the positioning on (a, e, o, u, or even dotless i -- or even w, n, m, c ... ) and it will look good for some combo's where others still need some manual fine tuning.
    Fonts that include separate accents usually just have the spacing ones. Off-hand, Arial Unicode MS is one font that has both 'flavours' -- I can insert first an 'a', then a '̀' to see à (and if you don't have that font on your system, it looks like this: à).
    OpenType fonts may contain tables that positions arbitrary accents onto any character, and always in the correct position, but ID lags behind with proper support for this.

  • HT1296 there are small circles in front of some song & they wont sync ?

    There are small circles in front of some songs & they wont sync to my ipod

    Do they play in iTunes on the computer?
    Dotted circle? A square in the circle?

  • How can I copy part of a larger PDF file and create a smaller one?

    How can I copy part of a larger PDF file and create a smaller one?

    Hi,
    Copy the content of PDF file in Adobe Reader and paset it to MS Word then create PDF file from the Word file.
    This may not work for all PDF files as some PDF files are not created correctly or some content cannot be copied.
    Acrobat XI Pro has features to extract/delete/crop pages in PDF files and you can download it from www.adobe.com(Trial version- 30 days free). Or you can upgrade your subscription to Acrobat Plus and see more information at https://www.acrobat.com/acrobatplus/en/home.html
    Hisami

  • In Indesign 3--I created an Elliptical Circle on a black background. I want the circle to be "THICK WHITE" Circumference.

    In Indesign 3--I created an Elliptical Circle on a black background. I want the circle to be "THICK WHITE" Circumference. I can only make the circle either solid black or solid white. I want the circle to be solid black with the circumference of the circle in "THICK WHITE".
    I'm a beginner in this. Somebody gave me a suggestion: "Select the object and make sure the Stroke panel is open (Window>Stroke). Select the size and make it Paper color."
    I went and selected the object as suggested. I then opened the "stroke panel". I could not see any size to select and could not see where to change to paper color. When I change to paper color, the whole circle became white. The only things I see in the stroke panel are as follows: I saw "weight" "Miter limit","cap", "join", "type", "start" "end", "gap Color", "gap tint" and played with all of them and I could not make the circumference "THICK WHITE".
    I'm posting this as a question in the hope somebody can give me a clearer answer. The above response to me ( "Select the object and make sure the Stroke panel is open (Window>Stroke). Select the size and make it Paper color.") was short and sweet but it did not help me. Thank you.

    See your other thread where I explained the color proxies...
    The size of a stroke is correctly termed "weight" and there's a filed for that with a dropdown in the stroke palette, or you can type your own number in.

  • I cannot view pictures in one of my files, they all have a small circle in front to them, How can I access them?

    Since the Maverick upgrade, I cannot view pictures in one of my files, they all have a small circle in front to them, How can I access them?

    Looking at this data, it appears to all be quarentined.  I presume this is the problem.  Not sure how it happened, but what do I do next?
    total 1022016
    drwxrwxrwx  130 501  20  -      4420 Nov  1 12:02 .
    drwx------+   5 501  20  -       170 Nov  4 11:36 ..
    0: ABCDEFAB-CDEF-ABCD-EFAB-CDEF0000000C deny delete
    -rw-r--r--@   1 501  20  -     24580 Nov  1 10:17 .DS_Store
              com.apple.FinderInfo                 32
    -rw-r--r--    1 501  20  -         0 Nov  1 12:02 .com.apple.timemachine.supported
    -rw-r--r--@   1 501  20  -     68209 Sep  1 19:01 1003755_10151572967007919_1735099829_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                140
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     39634 Jul 15 13:35 1057696_465455360212684_141716797_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                327
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     78315 Sep  1 19:01 1229985_10151620879572919_1488245660_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                140
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     76387 Sep 15 21:46 1235441_10151681599493723_632593470_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                140
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     14432 Sep 10 11:40 1236741_10151643929467919_283733894_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                139
              com.apple.quarantine                 22
    -rw-r--r--@   1 501  20  -     74672 Sep  1 18:59 1240498_10151628006147919_1412952436_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                140
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     94347 Jun  4 11:05 249190_10151467034942919_1728646541_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                135
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     44344 Aug 19 19:41 556324_481591665265720_1129146640_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                141
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     43375 Oct 27 13:34 644231_10151728384762919_193954243_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                139
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     98896 Jul  5 22:20 943555_10151520075642919_285623566_n.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                145
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -     92775 Jun  2 20:46 Adalyn - NICU Nurse Pics - 0055.jpeg
              com.apple.metadata:kMDItemWhereFroms                163
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     67788 Jun  2 20:47 Adalyn - NICU Nurse Pics - 0063.jpeg
              com.apple.metadata:kMDItemWhereFroms                163
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     58365 May 27 12:57 Adalyn - NICU Nurse Pics - 0069 copy.jpeg
              com.apple.metadata:kMDItemWhereFroms                163
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     58365 Jun  2 20:47 Adalyn - NICU Nurse Pics - 0069.jpeg
              com.apple.metadata:kMDItemWhereFroms                163
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    213210 Aug 10 15:19 Adalyn Rie Jin (Aug) - 0071.jpeg
              com.apple.metadata:kMDItemWhereFroms                201
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    213150 Aug 10 15:19 Adalyn Rie Jin (Aug) - 0081.jpeg
              com.apple.metadata:kMDItemWhereFroms                201
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    175631 Aug 10 15:19 Adalyn Rie Jin (Aug) - 0086.jpeg
              com.apple.metadata:kMDItemWhereFroms                201
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    236614 Aug 10 15:19 Adalyn Rie Jin (Aug) - 0088.jpeg
              com.apple.metadata:kMDItemWhereFroms                201
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     89330 Aug 12 04:12 Adalyn Rie Jin (Aug) - 0092.jpeg
              com.apple.metadata:kMDItemWhereFroms                199
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     58946 Aug 12 04:12 Adalyn Rie Jin (Aug) - 0098.jpeg
              com.apple.metadata:kMDItemWhereFroms                199
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     62987 Aug 12 04:12 Adalyn Rie Jin (Aug) - 0108.jpeg
              com.apple.metadata:kMDItemWhereFroms                199
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     70399 Jul  8 04:15 Adalyn Rie Jin (July) - 0118.jpeg
              com.apple.metadata:kMDItemWhereFroms                186
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     66857 Jul  8 04:15 Adalyn Rie Jin (July) - 0157.jpeg
              com.apple.metadata:kMDItemWhereFroms                186
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     63040 Jul  8 04:15 Adalyn Rie Jin (July) - 0165.jpeg
              com.apple.metadata:kMDItemWhereFroms                169
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    138126 Jul 22 10:49 Adalyn Rie Jin (July) - 0178.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    129088 Jul 22 10:49 Adalyn Rie Jin (July) - 0192.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    148180 Jul 22 10:49 Adalyn Rie Jin (July) - 0204.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    206819 Jul 22 10:49 Adalyn Rie Jin (July) - 0212.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    170473 Jul 22 10:47 Adalyn Rie Jin (July) - 0225.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    180558 Jul 22 10:47 Adalyn Rie Jin (July) - 0229.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    151541 Jul 22 10:47 Adalyn Rie Jin (July) - 0247.jpeg
              com.apple.metadata:kMDItemWhereFroms                204
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     66967 Jul 29 04:02 Adalyn Rie Jin (July) - 0286.jpeg
              com.apple.metadata:kMDItemWhereFroms                174
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    160743 Jun 27 14:08 Adalyn Rie Jin (June) - 0072 copy 2.jpeg
              com.apple.metadata:kMDItemWhereFroms                181
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    160743 Jun 12 21:24 Adalyn Rie Jin (June) - 0072 copy.jpeg
              com.apple.metadata:kMDItemWhereFroms                181
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    160743 Jun  9 05:57 Adalyn Rie Jin (June) - 0072.jpeg
              com.apple.metadata:kMDItemWhereFroms                181
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    166683 Jun 27 14:07 Adalyn Rie Jin (June) - 0143.jpeg
              com.apple.metadata:kMDItemWhereFroms                170
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    148019 Jun 27 14:08 Adalyn Rie Jin (June-NICU) - 0007 copy 2.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    148019 Jun 12 21:24 Adalyn Rie Jin (June-NICU) - 0007 copy.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    148019 Jun  9 13:33 Adalyn Rie Jin (June-NICU) - 0007.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    134451 Jun 27 14:08 Adalyn Rie Jin (June-NICU) - 0009 copy 2.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    134451 Jun 12 21:24 Adalyn Rie Jin (June-NICU) - 0009 copy.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    134451 Jun  9 13:33 Adalyn Rie Jin (June-NICU) - 0009.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    131080 Jun 27 14:08 Adalyn Rie Jin (June-NICU) - 0064 copy 2.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    131080 Jun 12 21:24 Adalyn Rie Jin (June-NICU) - 0064 copy.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    131080 Jun  9 13:33 Adalyn Rie Jin (June-NICU) - 0064.jpeg
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     71244 Oct 13 16:24 Adalyn Rie Jin (Oct) - 0005.jpeg
              com.apple.metadata:kMDItemWhereFroms                169
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     75196 Oct 13 16:24 Adalyn Rie Jin (Oct) - 0025.jpeg
              com.apple.metadata:kMDItemWhereFroms                169
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     56225 Oct 13 16:26 Addy 10-14-2013.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                140
              com.apple.quarantine                 22
    -rw-r--r--@   1 501  20  -    113209 Sep  5 19:11 AddyNCIU.jpg
              com.apple.metadata:kMDItemWhereFroms                158
              com.apple.quarantine                 58
    -rw-r--r--@   1 501  20  -     94964 Nov  1 08:09 Halloween - 0016.jpeg
              com.apple.metadata:kMDLabel_cybkhiyr35wptyfihxct6x736u                121
              com.apple.quarantine                 19
    -rw-r--r--@   1 501  20  -     97229 Nov  1 08:11 Halloween - 0020.jpeg
              com.apple.metadata:kMDLabel_cybkhiyr35wptyfihxct6x736u                121
              com.apple.quarantine                 19
    -rw-r--r--@   1 501  20  -     78422 Nov  1 08:11 Halloween - 0022.jpeg
              com.apple.metadata:kMDLabel_cybkhiyr35wptyfihxct6x736u                121
              com.apple.quarantine                 19
    -rw-r--r--@   1 501  20  -   1861274 Jun  2 20:52 IMG_0030.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2062981 Jun  2 20:52 IMG_0031.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1918618 Jun  2 20:52 IMG_0032.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1920997 Jun  2 20:52 IMG_0033.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1730364 Jun  2 20:52 IMG_0034.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1876748 Jun  2 20:52 IMG_0035.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1770509 Jun  2 20:52 IMG_0036.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1820947 Jun  2 20:52 IMG_0037.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1820658 Jun  2 20:52 IMG_0038.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1643763 Jun  2 20:52 IMG_0039.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1774206 Jun  2 20:52 IMG_0040.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1952998 Jun  2 20:52 IMG_0041.jpg
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1896283 Jun  2 20:52 IMG_0042.jpg
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   2044434 May 21 22:16 IMG_0080.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2364888 May 21 22:16 IMG_0081.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   1932344 May 21 18:34 IMG_0084.JPG
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   2346369 May 21 18:34 IMG_0085.JPG
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2327908 May 21 18:34 IMG_0087.JPG
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2334536 May 21 18:34 IMG_0089.JPG
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2289660 May 21 18:34 IMG_0091.JPG
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   5010714 Jun  3 15:57 IMG_0093.MOV
              com.apple.metadata:kMDItemWhereFroms                146
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -   2651630 May 31 17:11 IMG_0114.JPG
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1736302 May 31 20:23 IMG_0117.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2347580 May 31 20:24 IMG_0118.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   1801120 May 31 20:24 IMG_0119.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-r--r--@   1 501  20  -   2575386 May 31 20:24 IMG_0121.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   2783481 May 31 20:25 IMG_0123.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   2069637 May 31 20:25 IMG_0124.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   2568186 May 31 20:25 IMG_0125.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   1905600 May 31 20:25 IMG_0126.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-rw-rw-@   1 501  20  -   1508097 May 31 20:25 IMG_0134.jpg
              com.apple.FinderInfo                 32
              com.apple.quarantine                 21
    -rw-r--r--    1 501  20  - 426830833 May 31 18:00 IMG_0135.MOV
    -rw-r--r--@   1 501  20  -   2323991 Jun  2 20:47 IMG_0165.MOV
              com.apple.metadata:kMDItemWhereFroms                183
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    540672 Jun 10 15:33 IMG_1036.jpg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    876994 Jun 25 20:36 IMG_2139 copy.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    876994 Jun 25 20:36 IMG_2139.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -   2351104 Aug  7 14:24 IMG_2202.jpg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    610304 Jul 13 19:48 IMG_2737.jpg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    947623 Jun 18 04:11 IMG_2834.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    734636 Jun 16 13:10 IMG_3568.JPG
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -   1012227 Jul 16 16:48 IMG_4915 copy.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -   1012227 Jul 16 16:48 IMG_4915.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    843132 Jun 16 16:59 IMG_5371.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    835984 Jul  2 21:09 IMG_6054.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    667863 Aug  1 14:13 IMG_7585.jpeg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    221184 Jul 12 20:18 IMG_8857.jpg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    802816 Jun  4 18:39 IMG_8896.jpg
              com.apple.metadata:kMDItemDownloadedDate                 50
              com.apple.metadata:kMDItemWhereFroms                 97
              com.apple.quarantine                 56
    -rw-r--r--@   1 501  20  -    158868 Oct 31 14:50 Old-Ice-Pond-at-Hinkley-Park-autumn-in-Maine.jpg
              com.apple.metadata:kMDItemDownloadedDate                 53
              com.apple.metadata:kMDItemWhereFroms                154
              com.apple.quarantine                 25
    -rw-r--r--@   1 501  20  -    112728 Jul  4 04:23 image copy 2.jpeg
              com.apple.metadata:kMDItemWhereFroms                162
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    100063 Jul 25 15:58 image copy 3.jpeg
              com.apple.metadata:kMDItemWhereFroms                156
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    118634 Jul 25 15:58 image copy 4.jpeg
              com.apple.metadata:kMDItemWhereFroms                156
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    140100 Jul 25 15:58 image copy 5.jpeg
              com.apple.metadata:kMDItemWhereFroms                156
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    132516 Jul  4 04:18 image copy.jpeg
              com.apple.metadata:kMDItemWhereFroms                162
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    100063 Jun  3 15:55 image.jpeg
              com.apple.metadata:kMDItemWhereFroms                156
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -   1204230 Oct 13 19:31 photo 1.JPG
              com.apple.metadata:kMDItemWhereFroms                135
              com.apple.quarantine                 22
    -rw-r--r--@   1 501  20  -    106847 Jun  3 15:57 photo copy 10.JPG
              com.apple.metadata:kMDItemWhereFroms                180
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    128718 Jun  3 15:58 photo copy 11.JPG
              com.apple.metadata:kMDItemWhereFroms                163
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    116632 Jun 12 21:23 photo copy 12.JPG
              com.apple.metadata:kMDItemWhereFroms                165
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    116632 Jun 27 14:08 photo copy 13.JPG
              com.apple.metadata:kMDItemWhereFroms                165
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -     94330 Jun 27 14:07 photo copy 14.JPG
              com.apple.metadata:kMDItemWhereFroms                158
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    112672 Jun 27 14:07 photo copy 15.JPG
              com.apple.metadata:kMDItemWhereFroms                158
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    130125 Jun 27 14:07 photo copy 16.JPG
              com.apple.metadata:kMDItemWhereFroms                165
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    113209 Sep  5 19:11 photo copy 17.JPG
              com.apple.metadata:kMDItemWhereFroms                158
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    674632 Oct  1 12:19 photo copy 18.JPG
              com.apple.metadata:kMDItemWhereFroms                135
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    544613 Jun  2 20:47 photo copy 2.JPG
              com.apple.metadata:kMDItemWhereFroms                194
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    592801 Jun  2 20:47 photo copy 3.JPG
              com.apple.metadata:kMDItemWhereFroms                178
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -   2157594 Jun  2 20:48 photo copy 4.JPG
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -   1271060 Jun  2 20:48 photo copy 5.JPG
              com.apple.metadata:kMDItemWhereFroms                172
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    132088 Jun  3 15:56 photo copy 6.JPG
              com.apple.metadata:kMDItemWhereFroms                162
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    113188 Jun  3 15:56 photo copy 7.JPG
              com.apple.metadata:kMDItemWhereFroms                168
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    178252 Jun  3 15:57 photo copy 8.JPG
              com.apple.metadata:kMDItemWhereFroms                159
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    112672 Jun  3 15:57 photo copy 9.JPG
              com.apple.metadata:kMDItemWhereFroms                158
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    133907 Jun  2 20:46 photo copy.JPG
              com.apple.metadata:kMDItemWhereFroms                168
              com.apple.quarantine                 55
    -rw-r--r--@   1 501  20  -    112597 Jun  2 20:46 photo.JPG
              com.apple.metadata:kMDItemWhereFroms                182
              com.apple.quarantine                 55

  • Strip classes actually  used in a jar file to create a smaller jar file?

    I am creating a applet using java3d and the jar files add up to over 4meg ( j3dcore.jar j3dutils.jar vecmath.jar). Is there a way you can strip out only the classes your applet uses and create a smaller jar file so that the download isn't as big? Currently takes a long while for the applet to start because it downloads the Java 3D library in its entirety.

    Most likely those classes that you use also use other classes that you don't use ...

  • Create a small data base stored in a file

    I want to create a small data base of about 10 to 20 items. Each item will have an item number, serial number, time stamp and description. I want to store these 10 items in a file and be able to retrieve them by item number. How can I do this with LabView?

    For something this small, use a single VI to manage it in memory:
    It has a FUNCTION input, an enum with values of (INIT, READ FILE, WRITE FILE, ADD ITEM, FIND ITEM).
    It has a CLUSTER input, which is your record type {Item number, serial number, time stamp, description}
    It has a CLUSTER output, of the same type.
    It has an ITEM NUMBER input, which is an integer (assuming your item number is truly a number).
    The code is a WHILE loop with the CONTINUE input wired to FALSE (it never loops).
    Inside the WHILE LOOP is a CASE statement, with the selector wired to the FUNCTION control.
    For case INIT, make an empty array of records (your cluster type) and feed it to a shift register on the WHILE loop.
    For case WRITE FILE, take the shift regis
    ter input and CREATE, WRITE, and CLOSE a file. (pass it thru to the output as well). Wire the cluster to the DATALOG TYPE of the CREATE FILE function to create a datalog file.
    For case READ FILE, use OPEN FILE, READ FILE, and CLOSE FILE functions, with DATALOG TYPE wired to the cluster type.
    For case ADD ITEM, just append the new item (input cluster control) to the array from the shift reg and put the array back in the shift reg.
    For case FIND ITEM, just search thru the array (from the shift reg) until you find the matching item number, then return the whole record in the output.
    You'll have to pass the left shift reg thru the case to the right shift reg in all cases except INIT, READ FILE, and ADD ITEM.
    This means the actual storage is in the shift reg, for max efficiency.
    If you get beyound a hundred items, I would suggest a different FIND ITEM technique (keep a separate list for ITEM NUMBERS and search that, rather than the whole thing).
    This assumes you ha
    ve control of shutdown - any changes you make are lost unless you call WRITE FILE afterwards.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Want to create a small Movie to play on ipod

    Hallo
    I want to create a small Movie-file to play on my iPod, but I don't want to use the quite large Standard iPod-Format. What other choices do I have? I tried MPEG4, but it didn't play.
    I produce a Videopodcast, and want to keep the size small, and it should also play on iPods.
    Any Suggestions?
    Thanks everybody.
    Greetings from Switzerland
    Rolf

    Okay, thank you for trying to help me, but I guess, I didn't make clear what I really want.It would be a lot easier if you simply stated a target file size for a given duration here. For instance, lets say you want an iPod file targeted at 3 MBs/min or 9 MBs for your 3 minute file. This would require you to limit your audio plus video data rate to an average of approximately 384 Kbps. Since this is roughly half the data rate recommended for a 320 x 240 "Baseline" profile H.264/AAC iPod/Podcast file, your would have to use alternaive compression settings to the "iPod" preset. If I assume you wish to use QT Pro as your current workflow would suggest, then the obvious solution would be to use the "Movie to MPEG-4" export option since the lowest available "auto-adaptive Movie to iPod" option would be twice this figure.
    QT Pro Export option: MPEG-4
    File Format: MP4
    Video Tab Settings:
    Video Format: H.264
    Data Rate: 320 Kbps
    Image Size: 320 QVGA (for 4:3 aspect ratio) or as appropriate for other aspects at 320 pixel width
    Frame Rate: Current
    Key Frame: Automatic
    Video Options: Baseline/Faster Encode
    Audio Tab Setttings:
    Audio Format: AAC-LC (Music)
    Data Rate: 64 Kbps
    Channels: Mono or Stereo
    Output Sample Rate: 44.1 KHz
    Encoding quality: Better
    Streaming Settings:
    Enable streaming box: Unchecked
    One the other hand, if all you want to do is half your current output file size, then:
    open your DV file in the QT Player
    open the "Show Movie Properties" window
    select the video track
    select the "Visual Settings" tab
    turn Preserve Aspect Ratio off if needed
    enter 320 x 240 or other 320 width aspect ratio "Scaled Size" settings
    and convert using the "Movie to iPod" export option
    This series of steps forces the "auto-adaptive" function to export as an H.264/AAC "Baseline" profile with video data rate limited to less than 768 Kbps and a 128 Kbps/44.1 KHz stereo audio track or roughly half the file size of your current "Baseline Low Complexity" profile. Both of these possibilities, of course, assume you would be satisfied with the reduced display size (320 x 240 QVGA) iPod compatible/Podcast file format and the quality produced in the 3 MBs/min to 6 MBs/min range covered by these two suggestions.
    P.S.,
    Is there any particular reason you are not exporting directly from FCE to your iPod/Podcast target file?

  • [solved] dvdrip creates too small files

    hi,
    The output .avi files have not the selected bitrate / size.
    The Setteings in dvdrip are:
    Bitrate: 3422
    BPP: 0.581
    Target-Size: 1100MB
    the dvdrip.info file contains the right informations:
    [Video]
    Video format: PAL
    FPS: 25.000
    Size: 640 x 368
    Video bitrate (kbps): 3422
    Video codec: xvid4
    2-pass-encoded: yes
    Fast resizing: no
    Deinterlacer filter:
    Antialiasing filter: no Antialiasing
    but the file is only ~740MB with 2230 kbps.
    Last edited by SiD (2007-04-18 16:50:56)

    Ah, ok.
    Is there any option to keep aspect ratio?
    handbrake --help shows no such Option.
    Keeps handbrake the aspect ratio by default?
    I mean, when I use the --width option will handbrake keep the aspect ratio and calculate the correct height?
    EDIT:
    I found the answer in the HandBrake forums:
    http://handbrake.m0k.org/forum/viewtopi … 369b7ec4f4
    You get it by default in the CLI. Only turns off if you specify both width and height.
    EDIT:
    handbrake stops with ''Segmentation fault''. I opened another thread for it.
    http://bbs.archlinux.org/viewtopic.php?id=32061
    Problem is solved.
    I like HandBrake. It's fast with, IMHO, good quality.
    Thanks for the tip!  
    EDIT:
    No ideas about the dvdrip problem?
    I removed dvdrip and all the configs, reinstalled it, reinstalled transcode and xvidcore; but the target files still doesn't match the selected target size.
    A week ago it has worked.
    So maybe I'll restore my last System Backup (from April, 12) and report the results here.
    EDIT:
    Seems to be related to the settings / config of the used video codec and the input file(s).
    I have 2 movies on the DVD. The first one is encoded with correct target size (1100MB).
    I tried it with dvdrip/transcode and also with HandBrake using xvid and ffmpeg/lavc.
    The second is not encoded with selected target size. Using Handbrake with lavc as encoder, I noticed this message from lavc after the first pass:
    Using all of requested bitrate is not necessary for this video with these parameters
    I found this in the ffmpeg-devel list
    Another thing: I just now changed the phrase:
    "Using all of requested bitrate is not possible"
    ...to...
    "Using all of requested bitrate is not necessary"
    The former implies lavc is deficient in not doing what the user wants,
    which isn't the case.
    With B-frames, the PSNR is about the same, but note that the bitrate is
    much lower. lavc printed a notice about that: "Using all of requested
    bitrate is not necessary for this video with these parameters." The
    reason, here, is that lavc uses higher quantizers to encode B-frames,
    and, hence, a lower bitrate. With this clip, 7000 kbits/sec is so high
    that lavc can't reallocate the saved bitrate by lowering the quantizers
    of enough non B-frames--once all the I- and P-frames have a quantizer of
    2, the minimum allowed, the rest of the bitrate cannot be used.
    So I guess it's not a problem of dvdrip, but depends on the settings of lavc.
    Since the file xvid creates is smaller than target size too, I guess it's a similar thing, but don't know...
    I use the default settings, since I don't know anything about these PSNR, B, I and P frames.
    However, I'll set the topic to solved; cause it's not a problem of dvdrip.
    Last edited by SiD (2007-04-18 16:50:19)

  • What is the small circle near Verizon at top of iPhone?

    My phone keeps calling contacts, playing music, trying to FaceTime with contacts, is often unresponsive to home button...Verizon store rep checked it out and said it was 4G "bouncing" they had been doing, and many customers had similar problems.  But he said my phone was fine....now it is not again!  What is the deal?  Both he and I did soft resets, plus I did a hard reset before I even took it in...didn't help.  I also left it powered off for a long time to see if that would do the trick...clearly, it didn't!

    The small circle means you are on the slower 1XRTT network. You may be somewhere where you are getting a poor 3G/4G LTE signal, your SIM card my be bad, you may have a hardware issue.
    It's hard to understand your description of what troubleshooting took place as there is no such thing as a "hard" or "soft" reset on an iOS device, only a reset (press and hold the Home and power buttons until the silver apple appears) or a restore (wipe the phone back to factory settings). "Bouncing" is not exactly what we'd call a technical term so I've no idea what the rep was trying to say. And no, this is not a particularly common problem with Verizon iPhones. Make an appointment at the Genius Bar at your local Apple Store and have them take a look at it.

Maybe you are looking for