Scaling text and shape made in lower res file?

I created a selection, filled it and put text on top of it in a 72 ppi file and copied the group to an image with much higher resolution. I transformed the shape and text to make it bigger. Does doing this affect quality? It looked ok, I'm just curious.
Thanks.

Vectors are resolution independant, so Shape layers and Type layers will scale without damage to edge quality.
However, there's a pitfall if you place the 72 ppi document as a Smart Object in a 200 ppi document. The SO will be automatically scaled to maintain its size in inches in the new document. The fact that it is scaled isn't a problem in itself since you'd be doing that manually if it wasn't automatic. But when the SO is scaled, the pixel representation of its embedded document (not the embedded file itself which remains unchanged) will be scaled and (non-destructively) degraded by resampling in the same way as a regular pixel layer would be.
You can avoid the SO scaling problem by opening the 72 ppi document, or a duplicate, and using Image > Image Size to resample it to 200 ppi. That higher resolution document can be used itself or it can be placed as a Smart Object in other 200 ppi documents.
By the way, characters of a given size of font will be rendered with slightly different forms in documents of differing resolution to maintain legibility despite increasing pixelation in lower resolution documents.

Similar Messages

  • LR 5 exporting low res files

    Hi
    My LR5 is exporting low res files for some weird reason. I figure it has to do with the fact that I recently started using the smart preview  function. What made me almost 100% certain is has to do with this is the fact that I removed the hard drive that the files were linked to in LR, and then I was still able to export files. Now that in my mind shouldn't be as that file would be based on the smart preview created.
    With all that said....any ideas on how to get around this?

    The export feature is available when using smart previews. Sometimes users want to export images to post on the web or to give to clients for evaluation. You simply have to be aware of what you are doing.

  • How do I stop an unwanted pop-up, "Click on Sign to add text and place signature on a PDF File"?

    Whenever I open a PDF using Adobe Reader X, a pop-up appears at the upper right-hand corner of the document display window that says "Click on Sign to add text and place signature on a PDf file".
    Is there some way that I can stop this pop-up from appearing everytime I open a PDF?
    Thanks.

    Click on "Sign" so that the Sign pane opens and leave it open for a few seconds. It wont re-appear if you re-launch Reader now.
    HTH.

  • How do i increase the resolution on my screen in CC, my old CS6 was fine the new CC programme makes everything look like placed low-res files?

    ow do i increase the resolution on my screen in CC, my old CS6 was fine the new CC programme makes everything look like placed low-res files?

    yes doc set to high res, hard to get an example as screenshot is low-res anyway

  • Can not Group text and shape/object

    I have previously made frequent use of grouping text and objects or images together. But in Keynote 4.0.2 this is not possible (for me at least). I am able to lock multiple images, but the group, mask and alpha buttons are not active when selecting a combination of the two (text and objects). Images or objects can be grouped together. Is this a bug or what ?

    Open a NEW presentation (it should default to the Title and Subtitle slide of the theme)
    Type some text into the Title
    Insert a shape (square)
    Select the shape and the Title
    You should see that you cannot group anything with either the Title or Subtitle object of a slide. If you want to group text to an object, you have to create a new text object. Would this describe your inability to group (ie. limited to when you have Title/Subtitle selected?)

  • How to add new text and an empty space before a file name with Automator

    I can create a new service to add to multiple files some text before the file name but I need to add even an empty space; e.g. file name original  becomes: new text(space)file name original. The aim is to add this text and space to multiple files.
    I hope to be understood. Please can somebody help me?
    Thanks

    This is an old Apple-supplied AppleScript that will do the job.
    IMPORTANT: note the conditions of use: it will choose the frontmost Finder window to operate on. Therefore, open the folder you want to change the names of and make it the front finder window BEFORE running the script.
    Add to File Names
    This script is designed to add a prefix or suffix to files in the front window of the desktop.
    If no folder windows are open, the script will affect items on the desktop.
    Copyright © 2001–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    --March 2014: Changes by Phil Stokes to make the script work on 10.9
    --these changes are simply reversing the order of parameters in the lines that have "copy" in them
    -- The following line is disabled due to a Menu Manager bug
    --set the source_folder to (choose folder with prompt "Pick the folder containing the files to rename:")
    try
              tell application "Finder" to set the source_folder to (folder of the front window) as alias
    on error -- no open folder windows
              set the source_folder to path to desktop folder as alias
    end try
    set the prefix_or_suffix to ""
    repeat
              display dialog "Enter the prefix or suffix to use:" default answer the prefix_or_suffix buttons {"Cancel", "Prefix", "Suffix"}
              copy the result as list to {button_pressed, prefix_or_suffix}
              if the prefix_or_suffix is not "" then exit repeat
    end repeat
    set the item_list to list folder source_folder without invisibles
    set source_folder to source_folder as string
    repeat with i from 1 to number of items in the item_list
              set this_item to item i of the item_list
              set this_item to (source_folder & this_item) as alias
              set this_info to info for this_item
              set the current_name to the name of this_info
              if folder of this_info is false and ¬
                        alias of this_info is false then
                        if the button_pressed is "Prefix" then
                                  set the new_file_name to the (the prefix_or_suffix & the current_name) as string
                        else
                                  set the new_file_name to the (the current_name & the prefix_or_suffix) as string
                        end if
                        my set_item_name(this_item, the new_file_name)
              end if
    end repeat
    beep 2
    on set_item_name(this_item, new_item_name)
              tell application "Finder"
      --activate
                        set the parent_container_path to (the container of this_item) as text
                        if not (exists item (the parent_container_path & new_item_name)) then
                                  try
                                            set the name of this_item to new_item_name
                                  on error the error_message number the error_number
                                            if the error_number is -59 then
                                                      set the error_message to "This name contains improper characters, such as a colon (:)."
                                            else --the suggested name is too long
                                                      set the error_message to error_message -- "The name is more than 31 characters long."
                                            end if
      --beep
                                            tell me to display dialog the error_message default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
                                            copy the result as list to {button_pressed, new_item_name}
                                            if the button_pressed is "Skip" then return 0
                                            my set_item_name(this_item, new_item_name)
                                  end try
                        else --the name already exists
      --beep
                                  tell me to display dialog "This name is already taken, please rename." default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
                                  copy the result as list to {button_pressed, new_item_name}
                                  if the button_pressed is "Skip" then return 0
                                  my set_item_name(this_item, new_item_name)
                        end if
              end tell
    end set_item_name

  • Low-res File Icons In Finder!

    Not all of my file icons are high-res in Finder. For example Web Internet Location files, Disk Image files and MP3 files all have low-res icons. Is this a Leopard bug or did something go wrong during the upgrade from Tiger to Leopard on my machine?
    How can I get all of these icons showing up in high-res?

    While Quick Look decodes a surprisingly large number of file types, it doesn't decode them all. Oddly enought, considering that webloc files are created in Finder out of Safari, it doesn't do anything with them: one would think it would at least display the URL, but it doesn't. It also doesn't display Safari's webarchive files, which is even stranger (and worse, in my opinion). Apple needs to write the code to get these to display in Quick Look. I'm sure they will, especially for Safari's own webarchives. The same thing for various other file types that don't currently display in Quick Look: someone has to write some code to create QuickLook generator plug-ins. There are many that are simply buit-in, and I have two add ons from Apple: one for GarageBand files and one for iWork files, they are here:
    "/Library/QuickLook"
    As developers begin to take advantage no doubt more will show up when you update your third-party programs.
    Francine
    Francine
    Schwieder

  • A Text and shapes Related a subject

    You do not make star shaped settle while becoming automatic to the numbers ' back. A quick Help
    [URL=http://img411.imageshack.us/my.php?image=41335966xf8.jpg][IMG]http://img411.imageshac k.us/img411/152/41335966xf8.th.jpg[/IMG][/URL]

    From your image, I think you are asking if there is a way to automatically but a star shape around the number. Is that correct?
    If so, I think what you really need is a font with the numbers in the star. You could create a character style calling for the font. The difficulty is going to come with two- or three-digit (or larger) numbers.
    You might also be able to put the star in a library and use a script to place it inline where it's needed.
    Peter

  • Hyphenation not working! have highlighted the text and have made sure language is set to english. any ideas?

    I also cant force it to hyphenate. when I highlight the next and "check" hyphenation nothing happens. Please help! Thank you!
    Mac //  CS6

    Try restoring your InDesign preferences:
    Trash, Replace, Reset, or Restore the application Preferences

  • Record a selected Video, Audio and Subtitle track in low res for proof.

    I am moving my DVD Authoring from Spruce Maestro to DVD Studio Pro.
    The DVDs I create have 25 languages on them that need to be proofed by 25 different people all over the world. In the Spruce system I could just manually record the output with whatever video, audio and subtitle track that needed to be proofed in a WMV file format and then email the proof version before final burn.
    Now in DVD Studio Pro and can not seem to get an analog output to do a manual record. I have purchased an additional video card for my Mac Pro that has S-Video and that does not work. I have the DVI to S-Video converter cable but I can not select that output when it is active. I have tried the export function but that only changes the m2v file into a mpg file, so that does not work.
    Do you have any other suggestions - this is very important for my operation.
    Thank you, Ron Cole 209-604-5415

    very interesting. I do a lot with translation, though my maximum has been 16 languages on a single disc.
    There are a couple things you could do.
    1) One is just to do a screen capture using something like Screenflow to capture and process the single streams you want to output.
    2) I think the first approach is a little arduous. Better would be to use the power of Final Cut even before you get to DVD SP. Unfortunately I don't know your entire workflow. But subtitles can now be done in Final Cut and then carry forward into DVD SP. I'd lay out my edit and soundtrack and subtitles in FCP, and then export a file of my choice and size and have it automatically uploaded. This could be done right out of FCP or by creating a batch in Compressor. Changes, as they came back, would be applied in FCP. Once you had final approval (golden words), I'd move into Compressor to create M2v and ac3 files.
    My projects are done with similar workflows. I then have to ship off translated graphics for the DVD menus. That can be dealt with at the end in a finalized disc or preferably sending off stills for an early approval.
    Make sense?

  • Low Res files or no sound in Adobe Encore?? Please Help!

    Okay, I have a project which is around 1h 30 and I am aiming to burn it to DVD
    However, I have tried exporting as MPEG2 for DVD from the premier pro presets and when imported into encore there is no sound on the timeline and the footage appears very poor quality. I am new to Premier Pro CS6 and encore so please be patient with me! Haha.
    I then tried exporting as a MOV and transcoding however again the footage appears low quality and is too large for a standard DVD disc.
    The footage was recorded on a Canon 5D MK II
    Please help! I am going out of my mind!

    When you use MPEG2 for DVD as a preset, the audio is not multiplexed.  This means that the audio will be included on a separate audio file, which should be found in the same directory as the video file you exported. 
    In terms of quality - what exactly is the issue?  You can play with the video settings to try to improve some of the quality, but you need to set your expectations to the fact that DVDs are always Standard Definition, so they usually look pretty crummy on a large computer monitor. 

  • I'm trying to log and transfer from a pro res file (HQ) final cut s7 is telling me it is an unsupported format. What the?

    i have a 58 min pro res hq file that is a .mov. it is in a folder on my hdd. i'm trying to syn rushes by logging and transferring clips from this file but i cannot bring the said file into log and transfer. final cut putsup a window that tells me the file is in an unsupported format. and to bring in a file with a supported pathway. this i do not understand. any simple explanation as to what i'm missing?

    Thanks meg. I'm trying not to have to sync all the rushes in a timeline. All rushes are in the one 58 min prores file. I wanted to, I guess, log and capture the rushes as clips that I logg in the log and transfer winnow and that it would then log and sort out the material as proxy files. I'm guessing I'm just being lazy or it can't be done. Thanks for the reply but I was looking for a differentbway round than a straight import of the whole file.
    M

  • Why are low res files jpeg very slow to open on Mac?

    PS6 has suddenly started taking way too long to open any of my files. This includes small (500mb) jpeg files. I have uninstalled and reinstalled, trashed the prefs and tried using a different administrator account.
    PS5 works fine, as do the other CS6 aps.
    I'm on an iMac
    OS 10.95
    3.4 Intel Core i7
    24GB Ram
    Using
    PS6
    version 13.0

    Is CS6 currently updated to 13.0.1.3?  Help > System Info will tell you the exact version.
    If that's good, this will cover other items like fonts and plugins. http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    Gene

  • Getting the text and the shape to play at the same time in Keynote '08

    Searched FAQ without any luck. I put text into a shape. When 'played' however, the text comes in on first click, and shape on the second click. I would like both to enter slide simultaneously. How can I accomplish this ??
    THanks Fred

    Hi Fred,
    There are two ways to achieve this. Firstly you can group the two objects and they will then appear at that same time once you select a build for the group.
    You can use the Build inspector to do the same. Once you've chosen the build for the two objects click on the More Options button at the bottom. Select one of the objects (most likley listed as 'Text' and 'Shape' and chose from the Start Build sub menu 'Automatically with build X' where build X is the number of the build of the first object.

  • Scaling images and text in indesign CC

    Indesign CC (MAC 10.8.4)
    Hi, I'm a long time user of indesign and I'm having a real problems with scaling text and image boxs. Can't believe I'm asking having to ask this question, it's such a basic function!!
    If I use cmd or cmd+shift none of the content scales.
    Is there a new check box or a preference I need to change?
    Thanks in advance!

    There's no change in the way scaling works in InDesign CC. Cmd+Shift-scaling adjusts the content with the frame.
    Things to try out: (1) Restoring your preferences. (2) Looking for applications that conflict with the shortcuts. (For example, I found the password protector 1Password conflicts with InDesign.)

Maybe you are looking for

  • How to take a field value in an array?

    how to take a field value in an array? its urgent........

  • IDE for EJB's

    Hi there I'm looking for IDE's for EJB development. Best would be if it support UML notation or any other modeling language if you know any, please let me now thanks Thomas

  • Where can i find leopard 10.5.8......

    I was recently given a powerbook g4 running 10.4.11 and i am trying to bring it up to speed as much as possible. I want leopard 10.5.8 because this is what i was told i wanted on another thread. I am ready to buy, i just want to know where i can find

  • Using TM is iphoto

    im using iphoto 6.0.6 and i can not get TM to work for it, do i need to have the newer version of iphoto for it to work. when i open up iphoto and then click on TM it jsut brings up a finder window then gives me TM for that. -matt

  • Indesign flex

    Hi guys, I have two project one written in flex and other part in c++. In c++ i am creating a new property in my ApplicationScripting.fr. The property defination is like this. // Active web service url Property kFMServerActiveWebServiceURLPropertyScr