Creating distorted art (thermoforming)

Hello,
Creating distorted Art for thermoforming. (3D)
Anyone know an application that does or helps you do this with your art?  Can it be accomplished in Illustrator? . Any examples of art ready for forming would be great. An example  for you to think about would be like candy that looks  semi 3D and printed on. Just wondering how to add to the areas that would be raised. Is cad the only way?
thoughts? add width where there would be height?
thank you!
Rike

Rike,
Presuming your wishing to print on the foil/sheet before stretching it, and assuming that it can be aligned accurately with the mould(s) when clamped in the frame, you should work with the entire area of the foil/sheet within the frame:
The distortion (of the parts sucked into/over the mould) depends entirely on the depth of draw and the shape/draft angle.
Any (central) plane part may be relatively undistorted. Roughly/as an average, the distortion/stretching in the direction of the draw corresponds to the ratio of the final length along the mould to plane length within the frame, and the distortion/contraction in the opposite direction grows with the depth. The artwork on the undistorted foil/sheet should have the reversed distortion.
If the foil/sheet and the mould(s) exist alreay, you may print a suitable grid (rectangular/polar/whatever suitable) on the foil/sheet to be placed within the frame, and then reverse the observed distortions.
Note that adjacent parts on the final shape must also be adjacent in the original artwork.

Similar Messages

  • Creating an art which is not visible on 'Layer' panel.

    Hi all,
    Is it possible to create an art which is present on the document but not on the 'Layer' panel(F7)?
    My requirement is to create an art which is visible on the document, but could not be seen on the Layer panel and user is not able to select it.
    Just like it happens in case of reflection, when we are creating a copy of selected art object, the reflected copy doesn't present on the 'Layer' panel but it is visible on the document and user is not able to select the reflected one, while he can only select the original art.
    Any help would be appreciated.
    Thanks..

    If you want something that is rendered, but not in the layers panel, the only way to do that (that I know of) would be through a Live Effect. Live Effect lets you create art that is drawn, but not part of the art tree. The caveat is that it has to be tied to a piece of artwork that *is* on the artboard. I think you could apply it to the layer group for a layer, but every time anything on the layer changed it would trigger your live effect execution, so make sure its not hard to render!

  • How to properly create path art object, please help

    Hello there,
    I have a vector of AIRealPoint , each point is actual X, Y coordinate of the stroke. I need to create path art object out of this vector.
    I'm  somehow confused how to correctly construct segments array form the given AIRealPoints, my goal is to have single path object where count of segments is equal to count of AIrealPoints first and last points are anchors. SDK documenation is not really helping here...
    Please, take a look at the code snippet, it seems I'm doing something wrong with in and out params of segment , in any case I fail to create simple path object ....
    ASErr CretaeVectorPathTest2(vector<AIRealPoint>& stroke)
    AIArtHandle artHandle;
    ASErr result = kNoErr;
    try {
      AIRealPoint start;
      long lngStrokeLength = stroke.size()-1;
      AIArtHandle lineHandle = NULL;
      AIErr error = sAIArt->NewArt( kPathArt, kPlaceAboveAll, NULL, &lineHandle );
      if ( error ) throw( error );
      error = sAIPath->SetPathSegmentCount( lineHandle, lngStrokeLength );
      if ( error ) throw( error );
      AIPathSegment *segment = new AIPathSegment[lngStrokeLength];
      // This is a first point of the path
      segment[0].p.h = stroke[0].h;
      segment[0].p.v = stroke[0].v;
      segment[0].in = segment[0].out = segment[0].p;
      segment[0].corner = true;
      for(inti=1 ;i< lngStrokeLength-1;i++)
       segment[i].p.h = stroke[i].h ;
       segment[i].p.v = stroke[i].h ;
       // NOT GOOD!!!
       segment[i].in.h  = stroke[i-1].h ;
       segment[i].in.v  = stroke[i-1].v ;
       segment[i].out.h  = stroke[i+1].h;
       segment[i].out.v  = stroke[i+1].v;
       segment[i].corner = false;
    // NOT GOOD!!!
      // This is a last point of the path
      segment[lngStrokeLength].p.h = stroke[lngStrokeLength].h;
      segment[lngStrokeLength].p.v = stroke[lngStrokeLength].v;
      segment[lngStrokeLength].in = segment[lngStrokeLength].out = segment[lngStrokeLength].p;
      segment[lngStrokeLength].corner = true;
      error = sAIPath->SetPathSegments( lineHandle, 0, lngStrokeLength, segment );
      if ( error ) throw( error );
      error = sAIPath->SetPathClosed( lineHandle, false );
      if ( error ) throw( error );
    // apply color width etc.
      AIPathStyle style;
      error = sAIPathStyle->GetPathStyle( lineHandle, &style );
      if ( error ) throw( error );
      style.strokePaint = true;
      style.stroke.color.kind = kFourColor;
      style.stroke.color.c.f.cyan = 0;
      style.stroke.color.c.f.magenta = 0;
      style.stroke.color.c.f.yellow = 0;
      style.stroke.color.c.f.black = 100;
      style.stroke.width = 0.75;
      style.stroke.dash.length = 0;
      delete[] segment;
      error = sAIPathStyle->SetPathStyle( lineHandle, &style );
      if ( error ) throw( error );
    catch (ai::Error& ex) {
      result = ex;
    return result;
    Thanks,
    David

    As for beziers, Illustrator uses cubic beziers which are fairly straight forward (thank goodness!). Here's a lift from Wikipedia's Bezier entry:
    This image is pretty good at demonstrating how AI's bezier segments work. In the animation, the moving point has two lines sticking off it, ending with two points. If P3 was an AISegment, the left-hand blue point would be in and the right-hand point would be out. If we were to translate the state of the animation in its last frame into AI code, you'd basically have something like this:
    AISegment segment1, segment2;
    segment1.p = p0;
    segment1.in = p0;
    segment1.out = p1;
    segment2.in = p2;
    segment2.p = p3;
    segment.out = p3;
    Note that this would imply any line that continues beyond either end point isn't a smooth beizer curve (i.e. the curve is limited to between these points). That effectively makes them corner points (I think). Also, the line formed by linking in & p or out & p is the tangent to the curve at p, which I think you can make out from from the animation.
    Another way to get a feel for this is to use the pen tool to draw a line with a few segments. If you then pick the sub-select tool (white selection arrow, not black selection arrow) and select individual points on the curve, you'll see when you do that two 'anchors' jut out from each point. Those are the in & out for that point on the curve.
    Its all a little confusing because technically, a bezier segment between p & q would be p, p.out, q.in & q. (four vertices). To avoid repeating information, and keep it simple for non-beziers, AI's segments are still the vertices. So if you wanted to make the nth segment a beizer, you'd need n & n+1 from AI's path, and you'd modify two-thirds of each AISegment (p, out from n & in, p from n+1).
    I hope that helps, but if you have any further questions, feel free to ask! If you need to do anything fancy with beziers, there are some helpful utilites in AIRealBezier.h.

  • Creating vecor art from a single form field.

    How do I create vector art from a single form field within a pdf that has serveral form fields in it?
    Thanks
    Chris

    I need to create vector art from text within one form field on a page with several form fields on it.
    1- single form field
    2- create vector art from text within the single form field mentioned above
    3- if possible export to a file
    4- if not possible how can I create vector art from a pdf automatically?
    5- if possible, create a button that will allow users to create vector art from text in a single form field
    Thank you,
    Chris

  • Photoshop or Illustrator - for creating digital art?

    So, I want to create digital arts like the link provided below. I just don’t know if Photoshop or Illustrator is the right tool. Money really isn’t an object when it comes to art, but uh, which one is more designed for creating digital artwork?
    Example Picture Link: http://d.facdn.net/art/thefarewelled/1304841391.thefarewelled_huey_cut_in_copy.png
    [This is not my picture and found on google images]
    Please & thanks, Much love.

    Ultimately I would say photoshop is your best bet. You can do the hard lines, shading and blending for this type of thing fairly easily in photoshop compared to illustrator if you know how. Most web comic artist I know who do their work in color usually use photoshop to produce exactly this type of look. For examples look at Katbox.net/laslindas or 2kinds.com

  • Users to be created for ART and Workbech

    Hi Todd,
    I have an ART installation where I have created separate unix users for Workbench ( user work1 ) and ART (Work2 ).
    The product has been installed with a different user ( oracle ).
    I am facing some issues with this as work2 user is unable to run tmboot command and often I am getting "Permission denied" errors.
    can you tell me what is the recommended approach ? Should I use only a single user for ART and workbench ..
    Please suggest.
    Regards,
    Subhasis

    Hi Subhasis,
    Tuxedo uses the standard OS protections, so if you've installed Tuxedo as user oracle, you'll need to make sure the other users have access to those directories and files. In addition, you may be running into a problem trying to write the ULOG file. The location of that file can be controlled by the ULOGPFX environment variable.
    You should only need read+execute privileges to the files in the TUXDIR directory, but you will need write access to the directory containing TUXCONFIG, and typically to the APPDIR directory.f
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Created new Art Brush but it dissapears

    Let me just say I am reasonably new to Illustrator.
    I've created a new art Brush: New brush>Art Brush> and made my selections and clicked ok. The brush then shows in the brush palette where I have access to use it but then when I close the document and reopen a new one the brush dissapears. Where did it go and how do I get it back??
    Please help... not sure where I am going wrong in saving the brush.

    Once you create a brush in Illustrator you need to save it by choosing save brushes under Brush libraries menu.
    What you can do now open the old document  click on the save brushes and than open the new document and under Brush libraries menu select other libraries and open the saved brush library from the previous document.

  • Creating ascii art in Illustrator

    Hello,
    This is my first time posting and I'm hoping you can help me.
    I'd like to color letters of a text so that from afar the colored letters look like an image. The perfect example is ascii art - each character is colored appropriately so that as a whole it depicts an image of some sort.
    My question is this: How do you color each letter to an image I have already created? I've tried playing with opacity masks but that colors the text as well as the background [of the text]. I only want the text to be colored.
    Can you please tell me how I can achieve this?
    Thank you.

    I've tried playing with opacity masks but that colors the text as well as the background...
    Don't use the artwork to mask the text; use the text to mask the artwork. Be aware, of course, an opacity mask does not address the problem of characters that are "split" by two adjacent colors:
    JET

  • How do I create album art?

    How do I create my own ablum art?
    What are the demensions and requirements?
    I will be using this for my Podcast.
    Thank you in advance for any help.

    Your image must be 1400 x 1400 px, the format must be JPG or PNG and it must be RGB colour space; the file size must be no more than 500kB.
    You then upload it to your server and enter the resultant URL in whatever method you are using to create your feed.

  • Creating line art in photoshop

    Hi all,
    I have experimented with various tutorials and filters in photoshop hoping to replicate the clean smooth lines of the line art type image below (image based of a photo I presume).
    Does anyone know or can provide me with some tutorials on how to do such work.
    Any help would be great

    Probably done with the Trace function in a vector program.
    Similar results are possible but difficult with Photoshop.

  • Need help rotating a drawing without creating distortion

    I have drawn something in Illustrator CS3 using the shape tools and have addded a few effects. I want to rotate this shape at different angles and use it throughout my project. When I free rotate it becomes distorted and no longer looks like what I had drawn. Is there a way to lock the drawing, so that when I rotate it, it stays in tact?

    It is usuallly and best not to use the free transform tool fo this tye or rotation or movement.
    Use Effects>Distort and Transform>Transform
    if you need to distort it use the Free Distort tool also under the Distort and Transform Effect.
    The good thing about these is that you can always get back to where you began and if you had CS 4 you can turn them on and off
    and so you can have multiple adjustments that can be turned on and off at will as long as you are using CS 4 or later.
    In your case though you can always delete them and you can see what your settings are and you can change them without starting all over.

  • ITunes ripping certain CDs slow and creating distorted tracks

    I have just recently swicthed to iTunes after getting my new laptop and ripped my entire CD collection using it (iTunes 9.1.1 I believe).
    Anyway, out of probably 200 CDs I've found 5 that just won't rip properly and I can't, no matter what I look for figure out why?
    If anyone could help, the problem is that iTunes claims to be ripping at speeds of on average x0.4 to x0.6 (Where as all other CDs I get about x13) and estimating a rip time, but the estimation only goes down by 2 seconds every 40/50 seconds. After I finally gave in and let it rip an entire track (which took around an hour) the song was broken and distorted almost beyond recognition. I then decided to rip the track using Windows Media Player and it did it just fine.
    The Albums are;
    Muse -Showbiz
    Muse -Absolution
    Muse -HAARP
    Muse -Hullabloo Soundtrack
    Death Cab For Cutie -Plans
    If that makes any difference to the problem
    The CDs are clean and just about brand new since I only ever rip my CDs and then reserve them to the shelf, does anyone have any idea what's going wrong at all.
    Thankyou

    You might be able to see if Gracenote is responsible for the slow-down by using the script Disable Gracenote
    Hope this helps.
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.3.9)   Several ext. HD (backup and data)

  • Transitions and titles in iMovie 06 create distorted audio

    I'm trying to edit together some video and all of a sudden iMovie 06 is making a weird garbled, popping noise over the audio track of the video when it's playing a transition or title. I have absolutely no idea what could have cause this, I have been using the program for a while and this just happened out of the blue. Any ideas would be greatly appreciated. Thanks.

    iMovie's preference files can easily become corrupted. I can't say for sure, but that might be your problem. Try closing iMovie and then trashing the file com.apple.iMovie.plist found in User/Library/Preferences. iMovie will create a new preference file upon relaunch. Before relaunching, also do a permissions repair using the Utilities/Disk Utility app on your Mac.

  • Creating Art for Ipad

    I am creating my art in illustrator for an ipad size book. I have been using 1024 x 768 for th eartboard. Just recently I went to the drop down menu in illustrator and chose ipad template and it was exactly twice that size. Should I going forward design twice the size of the target size or stick with 1024 x 768. It is simply bold cartoon art. It look great and functioned well in importing into edge at 100% (1024 x 768). Any help would appreciated.

    Hi,
    Once you have your vertical or crossed references table already made, you have to right click on it and chance the block name to:
    ;SC_TA_C_5_L;SC_TA_C_6_L
    In this case :  ;SC_TA_C means you want to put an arrow trend inside each cell of the table matrix. The above formula tells BI Mobile to put an arrow trend icon on the 5th and the 6th column.
    After the column number (beginning with 1) you can put either a _L or _R which tells the app to put the icon either on the left or the right of the value.
    What I cannot achieve until now is to put ranges to show green/red icons...
    If someone knows how to achieve this, please let us know!
    for other types of scorecard types please refer to the SAP Mobile for IPAD guide.
    Regards

  • Illustrator CS 5.5 has memory issues when I create "distressed" looking art.

    I work in a screen printing company and we often get requests for art work with a "distressed" look. I usually creat the art work and fake a distressed look with a grunge brush that I expand and unite with the pathfinder tool. I then color it to the substrate color, or white for creating seperations. The "negative space" becomes individual paths that cause lagging on my computer. 
    We recently upgraded to a computer w/ 64bit processor w/ 8 GB of Ram (though even on the old computer, we had the same issue).
    My issue lies in that when I create multiple versions of this art. I get a warning about lack of available memory (which we should have plenty, as this when I save the files it takes significantly longer than other artwork).  I have adjusted the scratch disk settings to work of an external drive.  But when I make too many copies (which I have to do for the sepperation process) a warning window shows up that says:
    "Can't Finish previewing. Could not repeat the requested operation."
    and it switches to a wireframe preview.  Then if I try to save, it says "An unknown error has occured."
    I've attached images to illustrate this problem.  I had to do quite a few more copies of the art to illustrate the point, but significant resources are lost and I am usually unable to save my work when this happens.  I often have to do color seperations, so this requires multiple versions of the same art.  I've lost many hours on this "bug".
    Is there any tips, resources or anything available that you can let me know so this stops happening.  Distressed logos are in style, and I can't tell my employers that I can't do them when they bought a new computer to handle the limitaions of the old one.  This same thing has happend on both the old computer and the new one.
    How art looks on mock up
    "Distressed" part of art selected
    wire frame
    Error message

    Distressed logos are in style, and I can't tell my employers that I can't do them...
    You're workflow is the problem. You are trying to use a vector program to emulate raster-based results, and trying to solve the resulting problem by brute force (throwing additional hardware resources at it).
    There are several very widespread misconceptions associated with this commonplace scenario, stemming from confusion between the concepts of vector-based artwork versus raster-based artwork--as opposed to line art versus continuous-tone artwork.
    Silkscreen printing does not necessarily require vector-based artwork. It does, however, often require line art. But line art can be vector-based, raster-based, or a combination of the two.
    Mathematically-defined shapes and algorithmically-derived interpolation (blends, grads, etc.) are the purview of vector graphics. Granular detail and texture are the purview of raster-based imaging.
    There is no reason for you to insist on using a kazillion individual tiny, irregularly-shaped vector paths combined into a huge compound path in order to simulate a so-called "distressed" texture. Just use a 1-bit or 8-bit (with alpha transparency channel) raster image for the texture. Color it white and position it in front of the vector-based elements and print your separations.
    Alternatively, take your vector-based content to your raster imaging program, rasterize/separate it to appropriate spot color channels and apply your textures there.
    You'll find that you don't need additional hardware resources and that you have much more texture versatility.
    JET

Maybe you are looking for

  • Help needed in using faces

    I have viewed the iPhoto '09 tutorial. I have named three different pictures with the same individual and have named two other individuals in two separate photos. Those thumbnails appear on the cork page. When I double click one on of those photos to

  • Recruitment - automatic mail - text in the body of the e-mail

    Hi Experts, I'm facing an issue in the Recruitment! I managed to send e-mail attachment through transaction PBA5. However, the e-mails I send are "empty" and the standard text linked to the activitiy is attached (in a pdf format). Does anyone know ho

  • Blinking folder with a question mark at startup.

    Dear all. I am a newby with Macs and I just found an iMac G3 266Mhz. (Why anybody would throw a Mac away is beyond me but anyhow) When starting up I just get a blinking folder with the question mark. I can start up with an CD of Mac OS 9.2 but when w

  • Outbound ORDRSP IDOC not created while processing  using ALE_PROCESSING .

    HI ALL, i have done all the requiured config for o/b message control for ORDRSP idoc along with config in sale for dist.. model and assigning msg type to model etc and when i save my PO i can see the o/p being proposed but when i process that with A

  • Crashes when rendering /Realtek drivr problem

    hi, love 6.5 then 7 but Pro is driving me potty... My system keeps crashing when rendering and also - or maybe becaused of?! - I keep getting 'can't playback audio / audio inputs are deactivated / adobe default sound drivers are in half duplex mode'.