Placing image icon on top of batch file

i am creating a batch file , now i want to place application specific icon on top of that file , so how can i do it through my code
File batchFile = new File(installationDirectory+ "\\"+ "QTL.bat");
fos = new FileOutputStream(batchFile);
DataOutputStream dos=new DataOutputStream(fos);
dos.writeBytes("set JAVA_HOME="+ "\""+ javaHome+ "\"" +"\n");
dos.writeBytes("set QTL_HOME="+ installationDirectory+ "\n");
dos.writeBytes("cd %QTL_HOME%"+ "\n");
Regards

>
i am creating a batch file , now i want to place application specific icon on top of that file , so how can i do it through my code
>
You can't - a batch file doesn't have an Icon or a place to store one.
On Windows you can specify the icon for a shortcut.
1. create a shortcut on the desktop to the batch file
2. right-click the shortcut and select 'Change Icon
3. select your icon from the available list or point to another DLL that has the icon you want to use.
The only way to do the above programatically is to use the Win API to programatically create the shortcut and do it.

Similar Messages

  • Placing images in Illustrator for print ready files

    I'm designing a brochure in Illustrator that contains several logos and photos.  (Yes, I know, Illustrator... I've read several forums and know that InDesign may be a better program for this, but I completely underbid this project and really need to stick with something I know for cost efficiency.)
    I need to resize several images in Photoshop to place in Illustrator and I'm wondering if I should save them as CMYK jpegs, or tiffs, etc.  I need the file to be the smallest it can be for upload to the printer.  I need the basics on different file types and their pros and cons.
    Also, when I'm sending out the proof to the customer, any tips on saving the pdf so the images aren't too blurry and the file is still sendable?
    Please help!!  Any other information or tips on how to prepare my file as a print ready would be great.  I love to learn and really need some great resources.
    Thanks!

    How many pages are we talking about?  The key to file efficiency is Placing images at their final size, so you are on the right track.  Let me try to help...
    "I need to resize several images in Photoshop to place in Illustrator and I'm wondering if I should save them as CMYK jpegs, or tiffs, etc.  I need the file to be the smallest it can be for upload to the printer.  I need the basics on different file types and their pros and cons."
    -Do not save as JPG.  The compression artifacts will show up in print.  Just Place CMYK .tiffs or .psd's without sizing in Illustrator.  Another thing to keep in mind is "Linking" the image files instead of "Embedding" them.  You have a little more control saving your page files as EPS before creating the final PDF.
    "Also, when I'm sending out the proof to the customer, any tips on saving the pdf so the images aren't too blurry and the file is still sendable?"
    -There are a few different ways you can create a PDF viewable as a softproof.  You could send the final as a Standard PDF using defaults.  Don't forget to embed the fonts and leave color unchanged.  What I do is Export > RGB TIF @ 150ppi > Open the .tiff in Photoshop and Save-As Photoshop PDF with a JPG compression of 8.  You could do that for each page and then reassemble using Acrobat for one assembled, final PDF optimized.
    "Please help!!  Any other information or tips on how to prepare my file as a print ready would be great.  I love to learn and really need some great resources."
    -Get Adobe's Print Publishing Guide.  It has enough information in it to help you wade through all of the disinformation out there.  Get in touch with a couple of local print shops and have them take a look at your files.  Good shops can spot problems and give you some handy tips.  Not all shops will take the time, so finding one can be tricky. 
    Thanks!
    -You're welcome.  Let us know how it all shakes out.

  • How to put flash as a table or cell background or put HTML elements on top of flash file?

    Hi Guys,
    Could anyone please suggest me that how to put flash file as a table or cell background. I want to design a website and want to put HTML elements like table, images, text on top of flash file. so its look like animation in background. please visit following websites for an example: http://www.gagudju-dreaming.com/ and http://disneyworld.disney.go.com/
    Please guide me ASAP, thanks a lot in advance.
    Nitz.

    Hi Nitz
    The first thing you must do is convert your layout from table based to css based, (tables are o/k for tabular data, but not layout) but if you have never used css for layout it may be a steep learning curve.
    My recommendation is to start with the following tutorial on converting a table based comp to a css layout -
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    More info on using css is available here - http://www.adobe.com/devnet/dreamweaver/css.html.
    Once you have converted your site the 'procedure' for using swf's as a background, (does not work well with flv's, but can be done using html5 video without a skin, to a limited extent) is the same as having a background-image resize automatically to the full browser view-port. The best way to learn how to do this is to view the code on a page using the background-image technique, view the code on this page - http://www.pziecina.com/indexold.php.
    However, instead of having a fluid layout I would recommend using a fixed layout size to start with, as this overcomes many problems. I have uploaded a basic test page to illustrate the idea to - http://www.pziecina.com/test_ideas/swfbg_test.html. As I said the page must be resized in this example in order to see the effect, (so do not forget to resize the browser, even if it is only by 1px), but if you use a fixed size layout and your swf's size fits the desired area correctly the resize should not be required.
    PZ
    www.pziecina.com

  • How to include images/icons for a jar file

    Hi,
    I need to create a jar file which will contain my application. My source code (.java) files are in "app" folder. I compiled that using javac -d . *.java and one package("appl") was created. I have all icons and images related to my application are in the folder named "icons" in the directory where source files are located i.e; app folder - "app/icons". I am accessing the images in the icons directory as "icons/book.gif".
    I created a jar file from source file directory with the option
    jar cvf app.jar app
    and i added this jar file to my classpath also.
    I have created a batch file to execute this application and set that batch file to "path" environment variable.
    It is running from any directory but no icons are appearing in that application if i try to run the application out side the "app" folder.
    Can any body give suggessions to solve this problem?

    Thanks for the added info, now let's get started.
    To use files in jars, you need to refer to them via a URL, so you'll need to modify your code a little bit first.
    URL imgURL = ClassLoader.getSystemResource("icons/BOOK.gif");
    setIconImage(Toolkit.getDefaultToolkit().getImage(imgURL));Next, you'll need a manifest. Using any text editor such as notepad, create a file called manifest.txt and put two lines in it. The first line will specify the class (w/o .class on the end) that contains your public static void main method, the second line is just an empty line (just press return).
    Main-Class: main
    (a blank line)
    Save this file with your class files (e.g. in Exam folder).
    Next build your jar. We want the jar to contain the package folder and your icon folder as well. So use this:
    jar cmf Exam/manifest.txt myJar.jar Exam/*.class icons
    And you should now have an executable jar. You can run it from dos with:
    java -jar myJar.jar
    or you can double-click it from windows.
    -Ron

  • CS6 InDesign - Default display is high-quality. Four placed images are Illustrator files. Three images look the way they should - high-quality. One image looks pixelated. Why?

    InDesign CS6 - Default display is high-quality. All four placed images are Illustrator files. Three images look the way they should - high-quality. One image looks pixelated. Why?

    Not sure if this will help, but what is your inDesign file's "Transparency Blend Space" set to? It's under the edit menu.
    Also, when you are placing your images, are you selecting "Show Import Options" and making any selections there?

  • Running a batch file placed on a remote terminal????

    Hi all,
    How can I run a batch file which is located in machine A from machine B.?
    which is the best technology to go for?
    In RMI I need to have a server program running always to run the batch file, so any other alternative where in on demand invocation of batch file can be done.
    A web service is going to invoke this, so plz give me the best way to do this guys..
    waiting for ur reply
    Mithun

    How can I run a batch file which is located in
    machine A from machine B.?
    which is the best technology to go for?JVirus

  • Missing images in RH8 with linked Word files

    RH8 HTML and MS Word 2007
    The images from linked Word documents are not showing up in my RH8 project.
    Here's how the project is set up:
    The RH project is in its standard location: C drive, in a subfolder underneath My RoboHelp Projects.
    All content is included through the Link > Word Document option in RH.
    MS Word source files are in a network location (because several other writers are maintaining the source content). There are about 20 MS Word source files.
    I have an "Images" folder set up on the network at the same level as the source files, and we link the graphics into the MS Word files from there.
    Through my forum research, I have found several suggestions that have have made RH recognize the images in my linked files (previously, we were simply inserting the images into the Word source files, so in RH, the image was ignored and there was simply a blank line with no graphic indicator at all). So I am now selecting Insert > Picture > Link to File as the method for building images into the MS Word source file. I have also found the suggestion to ensure that the images are retained in the document, by selecting Office Button > Prepare > Edit Links to Files, and then checking the option for "Save picture in document" for each of the linked pictures.
    When I follow those methods, I now see a red-bordered box where the images should be, and the image file name is displayed in the box. However, I get an error message that says the image files used in each of the project htm files are "outside of the current project and will not be shown in Project Manager."
    I cannot figure out where to place the images so that RH's Project Manager recognizes them as part of the project. RH does not automatically create an Images folder within Project Manager. I've tried creating one myself and placing images there (and then even linking my source files to the images within the project folder). But still no dice.
    I have tried a volume of troubleshooting options--placing the linked source files and graphics within the project folder, leaving the source files on the network and placing copies in the project subfolders that RH creates after I link the source files into the project, etc etc etc. I've looked for a setting in RH that allows me to set a default location for images (never found one).
    Ergo, lots of troubleshooting, and still only half a solution here.
    I'd greatly appreciate it if anyone can shed some light. I am doing my best to avoid importing the graphics directly through RH because I want the online help to pick up the exact structure & content of the source files. This obviously negates the option for importing the Word content vs linking it in. In older versions of RH, I was at least accustomed to RH importing generically named images into the project regardless of whether they were copied directly into the Word file, but I see that this is not even an option when linking the source files into the project.
    Thanks in advance for any help you can provide.
    Best regards,
    Athena

    Hi Peter,
    Thank you for the recommendations. I want to be sure I’m understanding “embedded” the correct way. Do you mean to insert the images directly into the file—i.e., selecting the MS Word option Insert Picture > Insert? Or do you mean to insert them by selecting Insert Picture > Link to File?
    Also, could you let me know where in Windows Explorer I should attempt to trace the images? The image source files are stored with the content source files on my company network, in a separate sub-directory for Images (I have tested the build with all the files on my local drive as well). When I link the Word source files into RH and generate the topics, RH does not bring any images into the project folder within the My RoboHelp Projects directory on my local drive.
    I have searched through all the project files/directories that RH creates (top-level project folder, as well as subfolders it creates for each Word linked file), and there are no image files (except for one that I placed in my RH master page). I have attached a screenshot of the project folder (MainProjectFolder.png) and one of the linked file sub-folders (LogBookProjectFolder.png).
    The problem seems to be that RH is not recognizing an image as an image. RH knows there are supposed to be images in the htm topics because it does have the red box “placeholder” where the images should be, and the image names are displayed in the red boxes (see attached RH_Project.png screenshot). I have gone into the properties for an image and used the Image Name field to manually map to the directory that contains the source image. When I do that, the image then appears in the top-level project folder with the gold & green RH image icon, and it does then appear in the topic. But at that point, if I update the linked Word file, I lose the image again. I have set the topics with images to where they retain the RH image modifications I’ve done, but then the topic shows as broken in my TOC when I update the linked Word file, and those topics do not appear in the build at all when I generate the WebHelp.
    Since RH also does not automatically create any kind of Images folder in the project during the process of linking and generating the source files, I have tried copy/pasting the source images into the top-level RH project folder prior to even linking/generating htm topics from the Word source files. But when I go to a topic and view the properties associated with the image placeholder, RH still does not display any of the image files I pasted into the project folder.
    I am happy to provide my source file so that you can investigate this further. Please let me know if you need the file with the images inserted directly or if you need it with them linked in (in which case, I’ll send the image files too).
    Thanks,
    Athena

  • Create Pattern Swatch from Placed Image in Javascript

    I need to create a large number of pattern swatches from some .jpg file on disk. I've figured out how to script the insertion of the .jpgs into my AI document as placed images:
         // Embed the image into the document.
         file = new File("MyImage.jpg");
         var document = app.activeDocument;
         var newPlaced = document.layers["swatches"].groupItems.createFromFile(file);
         newPlaced.name = "MyImage_Placed";
    This works fine and the item shows up in the correct layer as an embedded image.
    Now I want to create a PatternSwatch (I think) from that Image.
    To create a new swatch the code starts out as:
         newSwatch = document.swatches.add();
         newSwatch.name = "MyImage_Swatch";
    but now I'm stuck! How do I associate the new PlacedItem with the swatch I just created? I can see the swatch in the palette so I'm partway there.

    When you say you would drag the image itself into the Swatch Palette and it would show the image itself? How would then use this swatch? Can you give an example of what you would apply a jpeg to as a swatch? The only palette that I can think of off the top of my head that you can drag a jpeg into and have the icon appear as the jpeg is the Symbols Palette. Is is possible that you were using the Symbols Palette in the past and not the Swatch Palette?

  • Batch file to html report generator:

    I want to create reports based of the batch file that I run.
    I created a batch file to run a number of programs for this PC tune up service that we do at the University I work at.  This is mostly a "learn for my own benefit" project, but if it works and looks nice I would like to make it availible to
    my co workers.  
    Here is what I have so far for the batch:
    @echo off
    :start
    echo.
    echo Do you need to install
    echo  Microsoft Antivirus?
    echo Type y / n (lowercase)
    set /p antivirus=
    if %antivirus%== y goto msantivirus
    if %antivirus%== n goto mbam
    goto start
    :msantivirus
    echo ProgramFiles(x86) var:
    if not defined ProgramFiles(x86) (
        start mseinstall32.exe 
    else (
        start mseinstall64.exe 
    :mbam
    echo.
    echo Do you need to install
    echo  Malwarebytes?
    echo Type y / n (lowercase)
    set /p malwarebytes=
    if %malwarebytes%== y start  mbam-setup-2.0.2.1012.exe
    if %malwarebytes%== n goto cleaner
    goto mbam
    :cleaner
    echo.
    echo Do you need to install
    echo  CCleaner?
    echo Type y / n (lowercase)
    set /p CCleaner=
    if %CCleaner%== y start  start ccsetup416.exe
    if %CCleaner%== n goto msconfig
    goto cleaner
    :msconfig
    echo.
    echo Do you need to run
    echo  MSCONFIG?
    echo Type y / n (lowercase)
    set /p microsoftconfig=
    if %microsoftconfig%== y start msconfig
    if %microsoftconfig%== n goto print
    goto msconfig
    :print
    echo.
    echo Do you want to print
    echo  a report?
    echo Type y / n (lowercase)
    set /p print=
    if %print%== y start (i don't know what to do here)
    if %print%== n goto done
    goto done
    :done
    echo.
    echo You have finished the Zonetech scan. Press any key to exit.
    pause >null
    Here is what I have for the HTML (its based of another site I made so there is some leftover stuff in it):
    <!DOCTYPE html>
    <html>
    <head>  
    <title> Zone Tech Computer Health Form </title>
    <meta name= "viewport" content="width=device-width, initial-scale=1.0">
    <link href= "css/bootstrap.min.css" rel= "stylesheet">
    <link href= "css/styles.css" rel= "stylesheet">
    </head>
    <body>  
    <div class="navbar navbar-inverse navbar-static-top">
    <div class= "container">
    <a href= "#" class= "navbar-brand"> BOISE STATE UNIVERSITY ZONE TECH</a>
    <button class = "navbar-toggle" data-toggle = "collapse" data-target = ".navHeaderCollapse">
    <span class = "icon-bar"> </span>
    <span class = "icon-bar"> </span>
    <span class = "icon-bar">  </span>
    <span class = "icon-bar"> </span>
    <span class = "icon-bar">  </span>
    </button>
    <div class= "collapse navbar-collapse navHeaderCollapse">
    <ul class = "nav navbar-nav navbar-right">
    <li class= "active"><a href = "#">Home</a></li>
    <li><a href = "#">Blog <b class= "caret"></b></a></li>
    <li class = "dropdown">
    <a href = "#" class = "dropdown-toggle" data-toggle = "dropdown">Social Media</a>
    <ul class = "dropdown-menu">
    <li> <a href = "#">Twiter</a></li>
    <li> <a href = "#">Facebook</a></li>
    <li> <a href = "#">Google +</a></li>
    <li> <a href = "#">Instagram</a></li>
    </ul>
    </li>
    <li><a href = "#">About</a></li>
    <li><a href = "#contact" data-toggle="modal" >Contact</a></li>
    </ul>
    </div>
    </div>
    </div>
    <div class = "container text-center">
    <div class ="jumbotron">
    <h1> Computer Health Report</h1>
    <img src="img/smallerbroncologo.png" />
    </div>
    </div>
    <div class= "container" >
    <div class = "row">
    <div class = "col-md-3">
    <h3><a href = "#">Virus Scan </a></h3>
    <p>A Virus Scan checks your computer to see if any malicious software is present.</p>
    <a href = "#" class = "btn btn-default" > read moe </a>
    </div>
    <div class = "col-md-3">
    <h3><a href = "#">Adware Scan </a></h3>
    <p>We check your computer for programs that may present themselves as legitimate services to "repair" your computer for money or sites that redirect your internet browser.</p>
    <a href = "#" class = "btn btn-default" > read moe </a>
    </div>
    <div class = "col-md-3">
    <h3><a href = "#">Registry Scan </a></h3>
    <p>Sometimes programs you have installed don't uninstall right or fully.  Othertimes your programs may stop working because there is wrong infomration in the registry.  We clean and optimize the registry
    to help make your computer work better</p>
    <a href = "#" class = "btn btn-default" > read moe </a>
    </div>
    <div class = "col-md-3">
    <h3><a href = "#">Start Up Scan </a></h3>
    <p>If your computer is booting slowly, sometimes the cause is to many programs trying to start up when windows starts up.  If to many programs try to start up at once it clogs up the computers processor and makes
    it run slow.   We check to make sure that only the essential programs are running so your computer runs better.</p>
    <a href = "#" class = "btn btn-default" > read moe </a>
    </div>
    </div>
    </div>
    <div class = "navbar navbar-inverse navbar-fixed-bottom" >
    <div class = "container" >
    <p class = "navbar-text pull-left"> Site by Travis </p>
    </div>
    </div>
    <div class = "modal fade" id = "contact" role = "dialog">
    <div class = class "modal-dialog">
    <div class = "modal-content">
    <div class = "modal-header">
    <p> Contact Tech Site </p>
    </div>
    <div class= "modal-body" >
    <p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are
    going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on
    the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from  </p>
    </div>
    <div class = "footer">
    <a class= "btn btn-default" data-dismiss = "modal" >close</a>
    <a class= "btn btn-primary" data-dismiss = "modal" >close</a>
    </div>
    </div>
    </div>
    </div>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js"> </script>
    <script src="js/bootstrap.js"> </script>
    </body>
    </html>
    Here is what I want to do:
    I want to make an interactive html report based on an HTML site I made.  I want to take the y (meaning yes) inputs for the strings( anitivirus, malwarebytes, ccleaner, and Microsoftconfig which are from the batch) and make them indicate something has
    been done on the HTML that I created.  Essentially, I see the yes inputs putting check marks (or something) in the sections of my HTML document that are related to the programs I ran in the batch.  The sections in the HTML page are called Virus Scan,
    Adware Scan, Registry Scan, and Start up scan and they are paired to the variables antivirus, malwarebytes, ccleaner, and microsoftconfig.  
    I hope this makes sense.
    Thanks for any help

    This is the way I was looking at it.  Essentially a html file is a text file.  I have already written the html file I want to have displayed.  I just want the batch to make a slight change to the text in part of it.  If I could
    do that I would be happy.  Is there any way to do that with the batch?
    Editing files never has been and is still not something that batch files do easily.  I ti si not the intention of batch to do this.
    If you are trying to learn something, try learn-ing something that is not obsolete.  Batch is not worth the time when we have PowerShell,  If you ant to alter an HTML dynamically then use an HTA.  It is easy and well supported.
    ¯\_(ツ)_/¯

  • Images are on top of each other.

    Forgive me, but I will explain this as best I can. We just got our iMac. We have 2 cameras that we use. So I imported some pictures from church last night. They show up in my library at the bottom AND the top (as if they were imported twice). Now, if I'm at the top of my library and double-click on an image, it brings me to the editing room. But now instead of the picture being the one from church, the enlarged picture is a construction picture taken by another camera (and the picture in the toolbar area is still the picture from church - they don't match). However, those same church pictures at the bottom of the library don't have that problem - they are what they should be. And there are some other images like that, too (but not all of my pictures have done that). And they don't have the same file name, so it's not like iPhoto is confused by that. Also, if I'm scrolling through, I will see pictures from church, and when I stop scrolling, the construction pictures come in and take their place.
    Any ideas??? Why is it double-importing and placing images on top of each other like that? Am I doing something wrong?
    Thanks for any help you might have on this.
    iMac   Mac OS X (10.4.9)  

    Vixon
    Welcome to the Apple Discussions.
    Try rebuilding the database. Hold down the apple and option (or alt) keys and launch iPhoto. Use the resulting dialogue to rebuild. Choose the top three options.
    Regards
    TD

  • SCRIPT TO IMPORT MULTIPLE PLACED IMAGES..AND OUTPUT MULTIPLE IMAGES TO SINGLE PDF.

    Anyone got a script to import multiple placed images into CS4? or is this possible in CS5?
    and can we output multiple layers into a single PDF in illustrator?  Or multiple layers into single JPEGS from illustrator with one command instead of individually saving out each page... would be a huge time saver for me.
    Currently I output each completed layer individually and then right click those outputted jpegs in their output folder and choose "combine supported files into acrobat..." to make a single acrobat file..
    I`d also like to be able to CTRL click multiple layers and go save as... only those layers get saved out...
    And so adding something in the Save for PDF output dialogue box to save layers to multiple pages would be a helpful time saver..

    In CS 4 and CS 5 you can drag and drop fro m the finder or the Bridge, and I guess any other similar type viewer, multiple number of image files to a document. You can configure the bridge in such a way as to allow you to see the Bridge and your document at the same time for this very purpose.
    If you just drag and drop the files are linked if you drag while holding the shift key then the files will be embedded.
    ID and PS CS 5 have a minibridge which works the sam way but is an actually panel and will stay in the front.
    I separate the images but they import one on top of another.

  • Add Strokes to Placed Images in Illustrator

    Hi All,
    I'm having a problem to add a stroke "frame" around my tiff image in Illustrator. My image is a "traced picture" from Photoshop. I used the following technique:-
    Technique: Use an Effect
    Choose File > Place and select an image to place into Illustrator document.
    Choose File > Place and select an image to place into Illustrator document.
    The image is selected. Open Appearance panel and from the Appearance panel flyout menu, choose Add New Stroke.
    With the Stroke highlighted in the Appearance panel, choose Effect > Path > Outline Object.
    However, the result I got was the stroke around the image NOT the frame around the image.
    How do I  achieve it. Any help and tips are greatly appreciated. Thanks in advance.

    Technique #1: Use a Mask
    This technique requires Illustrator CS3 and works only when your keyline will be rectangular in shape.
    Choose File > Place and choose an image to place into your Illustrator document. You can either Link or Embed the image. Once you've chosen the image, click the Place button.
    The image is selected (if your image already exists in your document, select it now), so if you look in your Control panel at the top of the screen, you'll see a button labeled "MASK". Click on it. This creates a mask at the exact bounds of the image.
    Press the "D" key for Default. This gives the mask a black 1 pt stroke attribute. Adjust the stroke per your design needs.
    NOTE: An additional benefit to this method of using a mask is that you now have the elements in place to simulate a "frame and image" paradigm like InDesign. Once you've created your mask, you can decide to "crop" your image by double clicking anywhere on the photo. This will put you into Isolation Mode. Now click on the frame edge and resize at will. When you're done, double click outside the image to exit isolation mode and continue working. This method works wonderfully when you're using the Selection tool (black arrow) and have the Bounding Box option turned on (in the View menu).
    Technique #2: Use an Effect
    At first, it may seem that applying a keyline with the use of an Effect is a tedious process. But we all know that once we've applied an effect, we can store it as a Graphic Style, at which point applying our keyline will become a single click. Go ahead, ask me why Adobe doesn't ship Illustrator with such an effect as a default setting in the NDPs (New Document Profiles). Go ahead, ask me why Adobe doesn't allow us to assign keyboard shortcuts to styles like InDesign does. I don't have answers to either of those questions (sorry). But let's get on with the styles, shall we?
    There are two separate effects that we can use, and each provides a different benefit.
    Choose File > Place and select an image to place into your Illustrator document. You can either Link or Embed the image. Once you've chosen the image, click the Place button.
    The image is selected (or if your image already exists in your document, select it). Open your Appearance panel and from the Appearance panel flyout menu, choose Add New Stroke. We can't see the stroke yet, because all we have is an image. But we'll change that in short order.
    With the Stroke highlighted in the Appearance panel, choose Effect > Convert to Shape > Rectangle. Check the Preview button, select the Relative option, and set both the Extra Width and Extra Height to zero (0). (Be careful not to press Tab after you enter the second value, or it will switch back to Absolute.) Click OK to apply the effect. Style the stroke attribute to match your design preference.
    Now make this easier to apply in the future. With the object still selected, open the Graphic Styles panel and click the New Graphic Style button at the bottom of the panel. Give the style an appropriate name. If you then add this style to your NDPs, it will be readily available in all new files that you create.
    Add Strokes to Placed Images in Illustrator | CreativePro.com

  • What's best: placing images in Photoshop or InDesign?

    Hi guys
    Since I hear different things about creating for example posters etc. is this my question: What do you think is best to do when designing a poster or flyer (or whatever) with a nice background, bursh effects, pictures and text?
    I do it like this right now:
    Create the background in Photoshop
    place the background.psd in InDesign
    add the adjusted images of the artists etc. in InDesign
    add text in InDesign
    Save as PDF
    Some say creating the whole poster or design in Photoshop (even cutting out the pictures of the artists and rasterizing them) is better than placing each of them separately in InDesign?
    Anyone who has a good website or explanation for me to answer my question? Tips and tricks are welcome!
    Thanks!

    If the background is the same behind all images then you better do it in Photoshop because the file size of the background itself  when flatten will be similar with or without all images added on top of it. Other reasons that you may choose to do it as separate images is if you want the different images with different resolutions, for example if the background is some blurry clouds or some abstract gradients you don't really need to be very high resolution and if the images on top have some fine details you may decide to have them with higher resolution. The other consideration is if you want more flexibility with the composition in inDesign in case of eventual changes. So, it all depends on different things. The text you should do in inDesign.

  • Bounding box of placed pdf 'reflecting' objects of parent Ai file... Not what I want!

    As a self-taught Illustrator CS3 user I keep running into confounding issues.  The latest is this:
    Artboard is US letter size.  I have a placed jpg image in the top half that extends beyond the artboard on one side.  Only want 3/4 of the jpg content
    in the final product.
    Some text at the bottom.
    All in all a basic poster. 
    A clipping mask hides the part of the image that extends past the arboard.
    I save this 'parent' Ai file as a copy PDF - no layers - no editing - no thumbnails ect.  Keep original Ai parent file for later editing.
    I want to put this PDF into another ai document, but when I do, the bounding box extends past the pdf content out to
    where the jpg image is in the parent Ai file.
    Why?  Why can't I save a pdf that produces a stand alone img/doc without any apparent connection to its 'parent'?  Why can't this just happen without me having to crop the original jpg in photoshop to fit the parent Ai document perfectly and or somehow crop the image in the parent Ai. 
    Oh, and I have tried the crop tool and "make" crop area under the Object menu that contains only what is showing on the artboard.
    Same result.
    PDF that in Preview shows correctly but when placed in another ai file somehow 'becomes' larger with a bounding box that includes much more than what is actually there.
    This is maddeningly stupid IMO.
    Hope someone can be that patient professor of the design/Illustrator course that I can't afford, but that I need so desperately all the time.

    Why?
    I don't know; I just chalk it up as another instance of the sloppiness that permeates Illustrator, and the convoluted multiple nested clipping paths so common in PDFs.
    If I place the PDF as a Link, its bounding box corresponds to the clipping mask of the PDF.
    If I place the PDF embedded, not linked, then I get the result you describe.
    That arguably sort of makes sense in that, when you "place" (but embed) a PDF in Illustrator, you're really importing its content, including the nested clipping paths; and AI CS3 and prior always displays the bounds and edges of masked portions of clipping paths. When you "place" the PDF as a link, it's a preview that displays on the page, as if you were just linking a raster image.
    In CS4 and CS5, Adobe finally fixed the silliness of displaying edges of masked portions of the content of clipping paths, so in those versions, it probably acts the way you want whether linked or embedded. (I only have CS3 on this laptop, so can't verify right now.)
    JET

  • Bottom image showing thru top image, help

    hi,
    i received a pdf, looking at it thru preview looks fine. placed pdf in indesign file (cs3) and can see bottom image coming thru top image. Want bottom image (globe) behind top image, but showing thru. If I check off Overprint Previes it looks fine but still looks bad in indesign file and still prints (from printer) that way. How do I fix this?
    thanks

    A bit confused by the question without seeing an example but I'll try and help. If you want the image top image to overprint (making the bottom one show through) you could select the image in InDesign and set the Effect (effects panel) to multiply.
    Paul

Maybe you are looking for

  • 64-Bit PCI space on OpenSolaris

    ** As a disclaimer, I am working on OpenSolaris, not Solaris, so I am not sure if this is the right place to post. ** Hello, I've been trying a new feature on my BIOS that allows to memory map PCI device registers to spaces above 4G. However, when I

  • Authorization to execute a method of BO

    Hello, The workitem received by an agent goes into error status when executed due to the reason that the user is not authorized to execute the method of the business object. Please let me know the role or the authorization to be given to the user to

  • HT204380 Facetime

    My husband has an iPod touch and I the iPad, we are trying to use face time and can't get it to work. Any tips?

  • Embed images in a bunch of closed indd files.

    We need to batch process a ton of InDesign files. Specifically, we need to be able to copy a few hundred files to a new server. At the same time, these copied versions need to have their images embedded. Doe anyone have an idea how to do this?

  • Is there a function to set your presenter notes as a slide master?

    Hi, can I set my presenter notes as a master, ie, can I somehow set the notes as a default to display 'notes:' on all of the slides for example? Thanks Franziska