Gang Embed Images

I've usually have lots of images in my CS3  illustrator files. To print these files to my epson printer, I usually embed all linked files, flatten the image, and save the image as an EPS. Then I open the EPS file in photoshop at an appropriate resolution, and print from photoshop.
My question is this: Is there a way to embed all of the images at once, instead of having to embed each image individually? I usually select all of the images in the links palette, and then click "embed". Clicking "embed" brings up the "Photoshop Import Options" window. I usually click the option to "Flatten Photoshop layers to a single image". Then I have to click "OK" for every single image. It is annoying to have to sit here for five minutes and continue to click "OK" for every single linked image that I want to embed. Is there a way to just click "embed all images", without having to embed them one at a time? Thanks.

saysf1 wrote:
Jean-Claude,
That worked perfect...thanks! I don't know why I never tried that...all these years! Stuck in my old ways, I guess : )
Thanks.
But Monika wrote the same exact thing all you have to do is open the file in Photoshop if it is an ai file.
if yu save it as an eps yes the raster effects will lose transparency but not if you save it as an ai file as Monika suggested.
and even better than just dragging and dropping is to open the ai file as a smart object allowing you to save it out as any format at the resolution you specify in the image size dialog.
But to go back to the resolution issue though you can specify the file resolution in any form but the original images are less then that new resolution the images will be resampled so that  probably is good unless you are resing to a much higher resolution. In that case using as a smart object is best as it allows you the ability to replace the original image files whether they are linked or embedded with files that are better suited for the resed up version.
If you res up in some way the image files even as a batch process and you save them to the same directory that they were placed into the original AI fie and you have automatic updates for embedded images then you will only have to open the smart object in Illustrator wait for the update save the ai file and the photoshop file will be updated as well. Linking would be better for this way.
Yes, I know when you save it as an eps it does this awful things effects but since you are not saving as an eps that problem will nit be a factor.
At any rate Monika had a solution that is more powerful than although you can copy and paste and paste that as a smart object as well.
If you open the ai file just as a psd file then you get an option to set the document resolution.

Similar Messages

  • Embed image into email (not attachments)

    Hi all,
    i need to embed images into an HTML table of an email.
    Can anyone help me, please?
    Sergio

    I have done this in a prior application.. Are you building an html style message?
    I have attached some ideas for you to try:
    define hidden page variable to get the url and location for the images files:
    p19_SERVER_STRING
    Source or expression:
    SELECT owa_util.get_cgi_env('REQUEST_PROTOCOL')||'://'||owa_util.get_cgi_env('HTTP_HOST')||owa_util.get_cgi_env('SCRIPT_NAME')||'/wwv_flow_file_mgr.get_file?p_security_group_id=4398899520272508996&p_fname='
    FROM dual;
    (Security Group is from YOUR application)!!
    Next:
    In a After Submit process assemble the emial message:
    local variable lvMessage VARCHAR2(7500)
    Define message body in html document (Store in local varchar2 variable)
    <body>
    <p>
    <img height="90" hspace="0" src="'|| V('P19_SERVER_STRING')||'srtt_header.png' || '" " width="778" border="0" style="WIDTH: 931px; HEIGHT: 90px">
    </p>
    <p>
    </p>
    <p>
    Send the mseeage after you assemble the required pieces:
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => '[email protected]',
    P_BODY => v_message,
    P_BODY_HTML => v_message,
    P_SUBJ => 'Your email with an Image');
    APEX_MAIL.PUSH_QUEUE;
    Thank you,
    Tony Miller
    Webster, TX

  • Embed images in one MovieClip, use in another?

    I apologize if you've already read this message. My question
    isn't only AS, not only Flash, not only Flex. It's in the
    mysterious area where the three come together. I posted this in the
    AS discussion, but think it might be better off here.
    Is it possible to embed images (jpgs) in one MovieClip, then
    load that SWF into another MovieClip and use those images in the
    loader? We are trying to avoid reloading an image each time we need
    it, but still load them dynamically. We'd like to do this:
    Container.swf:
    <mx:Application>
    <mx:Script>
    [Embed(source="images/myimage.jpg")]
    public var img: String;
    </mx:Script>
    </mx:Application>
    Then, load that SWF and use its embedded image:
    Loader.swf:
    <mx:Application>
    <mx:Loader id="container" source="Container.swf" />
    <mx:HBox>
    <mx:Image id="the_image" source="container.content.img"
    />
    </mx:HBox>
    </mx:Application>
    It looks like this should work, and the "resource" string is
    properly being passed to the_image (something like
    __Resource.43234564.myimage_jpg) but it cannot actually load; we
    get a broken image instead.
    I'm guessing I somehow need to register the object library of
    the Container.swf with my Loader.swf? How?
    Or, is this whole enterprise impossible?
    Thank you!
    Greg

    In Flash you may use 'export for runtime sharing' future. In
    Flex there
    must be a way also (look at adobe devnet topics)
    In Flash common problem is you can't control loading progress
    of this
    add-on. Preload first add-on to one movie without "export for
    runtime
    sharing" future with loader progress if you need it, then
    reload common
    movie to 'real' loader - add-on wil be taken from cache
    > I apologize if you've already read this message. My
    question isn't only AS,
    > not only Flash, not only Flex. It's in the mysterious
    area where the three
    > come together. I posted this in the AS discussion, but
    think it might be
    > better off here.
    >
    > Is it possible to embed images (jpgs) in one MovieClip,
    then load that SWF
    > into another MovieClip and use those images in the
    loader? We are trying to
    > avoid reloading an image each time we need it, but still
    load them dynamically.
    > We'd like to do this:
    >
    > Container.swf:
    > <mx:Application>
    > <mx:Script>
    > [Embed(source="images/myimage.jpg")]
    > public var img: String;
    > </mx:Script>
    > </mx:Application>
    >
    > Then, load that SWF and use its embedded image:
    >
    > Loader.swf:
    > <mx:Application>
    > <mx:Loader id="container" source="Container.swf"
    />
    > <mx:HBox>
    > <mx:Image id="the_image"
    source="container.content.img" />
    > </mx:HBox>
    > </mx:Application>
    >
    > It looks like this should work, and the "resource"
    string is properly being
    > passed to the_image (something like
    __Resource.43234564.myimage_jpg) but it
    > cannot actually load; we get a broken image instead.
    >
    > I'm guessing I somehow need to register the object
    library of the
    > Container.swf with my Loader.swf? How?
    >
    > Or, is this whole enterprise impossible?
    >
    > Thank you!
    >
    > Greg
    >
    >
    >
    >

  • How to embed images in an INX file using script

    Hi All,
    Kindly help me in embedding images in INX file using Indesign Javascript.
    I have used the following code to embed images in an indd document and exporting that document to inx. But the images in inx are not embedded by default.
    var linksCount = myDocument.links.count();
    var linksOnPage = myDocument.links;
    for(var x=0;x<linksCount;x++){
        var linkedItem = linksOnPage.item(0);
        linkedItem.unlink();
    myDocument.save(new File("filename.indd"));
    myDocument.exportFile(ExportFormat.INDESIGN_INTERCHANGE, File("filename.inx"), app.pdfExportPresets.item("[Press Quality]"));
    Thanks in advance,
    Anitha

    Hi
    I think your script has two mistakes
    you embed only first link image in for loop => set x for linksOnPage
    exporting to inx isnot need PDF export preset => remove app.pdfExportPresets.item("[Press Quality]") from exportFile()
    this work for me.
    myDocument = app.documents[0];
    var linksCount = myDocument.links.count();
    var linksOnPage = myDocument.links;
    for(var x=0;x < linksCount;x++){
        var linkedItem = linksOnPage.item(x);
        linkedItem.unlink();
    myDocument.save(new File("filename.indd"));
    myDocument.exportFile(ExportFormat.INDESIGN_INTERCHANGE, File("filename.inx"));
    thank you

  • How to embed images in e-mail?

    How do you embed images in an e-mail?

    You can either place the cursor where you ant the image, go to the image on the screen, slect it and copy, change back to mail and paste. _OR_
    when composing, place the cursor wher you would like the image and Attach the file to the email.

  • How to embed image in email msg using MAC version of PSE

    I can embed an image as Photo Mail in email msg using WIN version of PSE8 but can only send the image as an attachment in MAC version. Is there a way to embed images in MAC version email msgs?

    Well, it's not complicated at all really. Just put the cursor in a message where you want the image and drop it in, or else click the stationery button in mail, choose a template, drag over the placeholder "greeking" text and replace it with your own, then drag your own photos into the placeholders. Here's a look at one of the templates. You can see that as my mouse is over the right hand image it tells you to put your own photo there in place of the sample. Moving over the other ones does the same thing.

  • How to embed images in long text of PM Notifications/Orders

    Dear Sir,
    How to embed images in long text of PM Notifications/Orders? Kindly help.
    Thanks & Regards
    PM Team.

    Hi,
      Unfortunately, You will not be able to view the graphics within the Long text editor screen.Only Limited word functionality is available on these editors.
      You will have to store these pictures separately as an attachment, through generic object services and then view them through that.
    Regards
    Narasimhan

  • Batch embed image in illustrator CS4

    I am working on about thousands ai files, each file have one image need to embed. My question is: Is there a way to embed the images at once? I usually open one ai files and select "embed image" in the links palette, is there a easy way to do this? Thanks!

    Thx Monika! I try your way on one file, it works! but I was not familiar with actions/script, I found a script named "Save as PDFs.jsx" under "Sample Scripts\JavaScript\Miscellaneous", so I replace PDF to AI in this script, does it works?

  • MIME Multipart/related to embed images in html files - Servlet

    Hello,
    My goal is to embed images in html/xhtml files to decrease latency when using slow networks. Think about mobile phones, if I have 10 images in one page, I will have 11 requests/responses to get the whole page.
    The solution would be to embed all images using Content-type multipart/related, so I have one request to the whole pack.
    How to do that in java? I mean, I need to set the content-type and build all parts encoding the images to base64.
    I tried JavaMail API, there I can build messages like this and instead of send an e-mail, I can write:
    myMimeMultipart.writeTo(response.getOutputStream());
    The problem is: I am getting everything as text in my browser, including the MIME headers of each part. Another think is that the first header (the main one) doesn't appear too.
    Any thoughts/other ideas?
    Thanks in advance,
    Andr� Carlucci

    If memory serves me right, I believe in the Servlet spec you have access to the Response object. You "should" be able to set any headers you need there. In addition, you can get the output streams just as you described.
    I did a similar thing, although slightly modified, to output dynamically-generated XLS (Excel Spreadsheet) files using a reporting engine called JasperReports. It wasn't a multipart response, however, so you may need to figure out how to handle that part of it, but in my case I set the mime-type header, then grabbed the output and started writing my XLS file too it. Once done, you close the streams and return the response. Worked perfect.

  • Trying to embed images from my iWeb site

    Sorry if this has been asked before but I did a search and could not find any answers.
    I upgraded from iLife 06 to 08 and managed to get a seamless transition of my iWeb site. The only problem now is that I seem unable to embed images from my site into other web pages on other sites. It used to be a case of copying and pasting the image address into the other web page. Now however it comes up with a very different looking image address that no longer ends with .jpg(jpeg) I have tried adding the .jpg to the end of the address without any success. Am I simply missing the obvious or is this feature no longer available?
    Thanks for any help

    Disable slideshow or not won't effect the way javascript render photos page images into canvas and anchor links.
    But, You can:
    1) get Safari 3.1.1, and turn on Develop menu. Safari -> Preferences... -> Advanced -> Show Develop menu in menu bar (bottom item). This allows you to see all the elements in the page.
    2) get Firefox, FF has DOM Inspector and Page Info.
    With the above, you will have to wade thru the info and fish out the links. or,
    3) using script to do the heavy lifting (scripting is your friends), there two free scripting languages: AppleScript and JavaScript in every mac.
    Combine the two and with understanding of iweb and DOM and you have the ultimate tools for iweb developing, here is the result of your first three links (I have all of them, but just post three here):
    http://web.mac.com/paullloydroach/Site/Landscapes2files/Media/morc1b%26w.jpg?derivative=web
    http://web.mac.com/paullloydroach/Site/Landscapes2_files/Media/mk26-2_0_22tonemapped.jpg?derivative=web
    http://web.mac.com/paullloydroach/Site/Landscapes2files/Media/Morecambe1.jpg?derivative=web

  • Embed image in form not displayed

    I am trying to embed an image in the form i.e., point an image that is in my local workbench.
    While I was testing from my local Workbench/Designer.
    I created a process which receives input xml document and sends the pdf document as response.
    However, when I deploy my process on the EB3 server and try to get the PDF from the java code, here is what happens
    (1) There is a check box in the designer --> Embed Image.
    If I check this check box, then I get pdf damanged error and the pdf will not load in my servlet
    (2) If I don't check the check box, then the pdf come but the image is missing.
    I would appreciate if someone helps me to avoid the error and get the image in the pdf.
    Thanks
    Sudhakar Patnapu

    It should work fine in 5.4 It was known issue in 5.3.  I could not reproduce the issue on 5.4.  Are you encountering the same issue for OOB text image component ?  If so send the content of [1]. 
    [1]   /libs/cq/ui/widgets/source/endorsed/excanvas/excanvas.js

  • Embed images

    Hi all!
    Is there a way to embed images directly in the jar file?
    Thanks
    Enrico

    Just place your image in your src/way/to/projectsrc directory.

  • How to embed images dynamically?

    HI all , I'm new to flex.
    Here is what I've already done, I use
    [Bindable]   
    [Embed(source="images/xxx.jpg")]
    private var img:Class;
    to embed several images in an application.
    But the source of these images can not be determined until the run time, I got image's url dynamically, and used some variables to store them. For example, an url may refers to an url
    var url:String = "images/xxx.jpg";
    Then I think it's possible to give its value to an image source by using
    [Bindable]   
    [Embed(source=url)]
    private var img:Class;
    However,it doesn't work. there is a compile error, the description is:
    "url" does not have a recognized extension, and a mime type was not provided
    Unable to transcode url
    So what's the problem here, and could any one give me some advice to embed images dynamically?
    Thanks!

    HI
    I don't think you can embed an image dynamically as you need to know the path of the image when you use the embed tag.  The embedding takes place at compile time, and you app would need to be compiled into a swf before your code loads.
    If you need dynamc images in an application then its usually done by loading them when the app is running.  You do this by using for example a HTTP service to load in the image paths.  You can then view them by assigning them to an image tag through Actionscript.
    I hope that helps and I got the idea of what you were trying to do.
    Heres a quick example I used for someone else on swapping images from an arrayCollection.  You could do something like this and populate the arrayCollection using a HTTP service.  Or just access the xml from the HTTP directly for the image paths
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" initialize="init()" xmlns:local="*">
         <mx:Script>
              <![CDATA[
              import mx.controls.Button;
              import mx.collections.ArrayCollection;
    [Bindable]
    private var ac:ArrayCollection = new ArrayCollection([
    {imageTitle : 'Car 1', imageUrl : 'http://www.geekologie.com/2007/12/07/future-car-1.jpg'},
    {imageTitle : 'Car 2', imageUrl :'http://www.speedace.info/solar_cars/solar_car_images/Solar_Wing_front_Japanese_e lectric_powered_car.jpg'},
    {imageTitle : 'Car 3', imageUrl : 'http://www.dezeen.com/wp-content/uploads/2008/09/gem-peapod-car-by-chrysler-llc- et008_027evsqu.jpg'}
    private function showCar(num:int):void {
    img.source = ac.getItemAt(num).imageUrl;
    imgTitle.text = ac.getItemAt(num).imageTitle;
    ]]>
         </mx:Script>
         <mx:Image id="img" source="{ac.getItemAt(0).imageUrl}" width="426" height="243"/>
         <mx:Label id="imgTitle" text="{ac.getItemAt(0).imageTitle}"/>
         <mx:Button label="Button" click="showCar(0)"/>
         <mx:Button label="Button" click="showCar(1)"/>
         <mx:Button label="Button" click="showCar(2)"/>
    </mx:Application>
    Good luck
    Andrew

  • How to embed images in HTML

    i was wondering if i could embed images into html and end up with a single file

    olafgarten212 wrote:
    i was wondering if i could embed images into html and end up with a single file
    No you can't.  An image file is an image file while HTML file is simply a text file that can be read and edited with any text editor.  Image files can't be edited in the normal way without the use of special programs like Photoshop, fireworks, and other free ones that can be downloaded.
    However, as your question is vague as pointed out by Nancy O, I would hazard to guess that you want to save a webpage that can be viewed off-line.  If this is the case then I suggest use Internet Explorer to save the page as .mht file.  This will allow you to have a complete page including images and style sheets all in one file.
    The file is saved as:  File >> save as >> "myfile.mht"
    The saved file is a single web archive, single file that can also be edited in Microsoft Word.
    Good luck.

  • Embed Images using Embed HTML Code

    Is it possible to embed images from a third party into a Captivate 6 file without actually having to download the itself and then import into the project?
    Mike

    You can't.  There is only a very small amount of HTML that flash suports and that's mostly for text formatting.
    See this link for more info:
    http://www.designswan.com/archives/tags-support-in-htmltext-flash-as3.html

Maybe you are looking for

  • Windows wireless network would not work straight away upon encountering a new network.

    A Windows 8.1 network always works in a home environment.  When taken to a public library, the network itself works but wouldn't connect to the Internet.  After a lot of fiddling, changing user, restarting the computer and so on, all of a sudden it s

  • How do I set up a dual display with my macbook and an iMac?

    Hi all, I have a macbook and an aluminum iMac. Is it possible to set up the iMac as an external monitor? If so what cable will I need, because I read that I would need a mini DVI to standard DVI adapter but it does not seem to fit into the ports. Tha

  • Struggling to finally install CS 6 Design and Web Premium

    So I was able to download this program from the education department as a student. I've downloaded everything and followed the process up to where you would sign in with your Adobe ID. From there it gave me options to customize the programs as in, ch

  • 3702E-Operational Status DOWN

    Hi All, When we tried connecting ap, its registering to the WLC 5508 with version 7.6.120.0. But it shows operational status as DOWN in WLC and blinking in red,green continuously. If i admin disable it, then it is coming UP and instantly goes DOWN. 

  • Xserve G5 unexpectedly shut down

    Hi there, We are still using an old Apple Xserve G5 for minor backup jobs. So far the Xserve is running very reliable. A year ago the Xserve unexpectedly shut down for numerous times. As I found out the guys from the colocation connected the Xserve w