convert to smart object resolution problem

Hello

I work for the video game UI and because of that, my photoshop documents always needs to have a resolution of 72 dpi.

My current problem is that when I convert a few layers to a dynamic object by using the launch of "convert to smart object" menu, Photoshop always gives this new file a resolution of 300 dpi.

It is very annoying and I don't find in the preferences a way to define a specific resolution of the dynamic object.

Changing the resolution after the creation of the dynamic object is not a solution (it's a slow process, I need to repeat each time a new smart object is created and the smart object is expanded in the parent document)

Create a new document with a specific resolution and drag it as a smart object to my parent document is also a slow process, that I can't use as my work files contains many of these intelligent objects.

So, is there a solution, I'll be very happy to know.

Thank you!

Mr. picouli says:

Hello

I work for the video game UI and because of that, my photoshop documents always needs to have a resolution of 72 dpi.

Why is that game and poster that matches are played do not follow the ppi. Billboards is manufactured with different PPI and none that I saw the card to have a resolution of 72 dpi. Why the 72 DPI is so important in your workflow?  Are you sure you all image files are recorded with a resolution of 72 dpi setting?   I think the number of pixels you have images and objects, it is what would be important for the games.

Tags: Photoshop

Similar Questions

  • Change of image when converting to smart object

    Well, that's a new one on me.

    I have a simple image with a layer and layers of setting three on top.

    Mixer - with blue layer refused to 0%

    Posterize - 3 levels

    Black and white - no changes to the default values

    It gives me a black and white posterized picture-as I expect. All blending modes are normal and without layer effects are applied and there is no other layers on.

    However, when I change to a dynamic object - level poster borders move (see example cut the corner of the picture below)

    If I open the smart object - everything is as before, if I close (save the object) and discovers the smart object in the main image, change the posterization.

    I work in 16-bit and image and the dynamic object are in Adobe RGB. I get the same effect with the GPU acceleration on or off

    I am at a loss to explain why I see a change while creating a dynamic object.

    Dave

    Just to be sure: to view > actual Pixels?

  • Smart object pixelation problems

    Hello

    How is it that some logos that I bring in Photoshop as smart air well while some other look pixelated? Is there anything I can do to improve it?

    Thank you!

    Select the smart object layer, starting a free transformation (don't change in reality the transformation), in the options bar turn anti-aliasing, then validate the transformation (again, without changing anything, but the anti-aliasing checkbox).

  • Bug or feature: opacity and blend-if values wiped out when convert to smart object layer

    I had unexpected results in an action that I put in place. As I was browsing through, I found that the conversion of a smart object layer reset the opacity to 100% and removed everything if mixture adjustments, if the blending mode has been retained. This is certainly an unexpected effect - is this a bug?

    Dynamic objects are always created at 100% and wipe any other mixture, mixture still exists within the object itself. It is the most logical way and reasonable so that it works - you will realize this if you think that it is through. Blend modes are however sometimes copied the layer source or group, it is possible and it is a kind of shortcut.

    To get the original mix in the smart object layer - open the smart object, do a right click on the layer with the bending choose 'copy layer style correct. " Now return to your master document, you can 'paste layer style' in the smart object layer.

    -

  • to change your smart object... help ~.

    Hello guys ~ does anyone know how to do in the face of the 'copied layer (smart object) make the same change to the original layer (smart object)? " Well sorry for my bad English

    example: when I draw a character that I used a lot to such layer as skin, cloths, hair, shoes, etc... for color (let's just say is a layer group has converted to smart object), then I make copy of this 'A layer group' (which is converted into a smart object) and change for the other copy (copy of Group A layer)... the problem is when I save me it Group A "layer" also changed... Well what I want is to change to the dynamic object 'copied' without the 'original dynamic object'... so help, please

    You want to right-click on the layer in the Layer palette and select 'New Smart Object Via Copy'

  • How to change a smart object

    I don't know how I go on this point, but I had the text in Word and pasted in a gray background in PS CC. Now, I have a smart object. Look great, but I forgot to add a period. I did some research on google, and he says to choose layer, change the dynamic object (or double-click on the thumb).

    But then, he brings the text in Adobe Acrobat Reader DC (is part of the suite CC?), never seen before.

    I can select some text there, but the keyboard does not work to remove or add anything. I'm stuck. Thank you.

    It would be more simple paste the text again. You cannot change the text in Acrobat Reader

    Copy the text from the Word document. Create a new text layer in Photoshop by clicking anywhere on the document with the text tool.

    Then stick.

    The text should now be editable on a new layer. This layer is not a smart object, but you can make it if you want by layer > smart objects > convert to smart object.

  • Connecting smart objects. Basic question

    Question.jpg

    One way is to replace the layer of

    file-> place incorporated

    Another way is to:

    Right-click on the layer in the layers panel

    and select "convert to smart object.

  • Linked smart objects scripts

    Does anyone know a way using available for Photoshop, preferred AppleScript script languages, to convert a smart object embedded in a dynamic linked object?

    Use only registered by ScriptingListener.plugin such action handler code.

    But you can use JavaScript if you're serious about automating tasks with scripting Photoshop.

  • Open as smart object bound

    Hello

    IAM looking for a solution to open the files in a folder

    and then copy into a document.

    His good work, but I need the files linked smart object.

    Someone knows a solution?

    Here is my Code so far:

    See line 33. Convert to smart object:?

    var file = new File('C:/User_MY PATH.PSD'),
    docRef = open(file);
    
    
    
    
    // Use the path to the application and append the samples folder
    var samplesFolder = Folder('C:/USERS_MY FOLDER');
    
    
    //Get all the files in the folder
    var fileList = samplesFolder.getFiles()
    
    
      // open each file
      for (var i = 0; i < fileList.length; i++)
      {
      // The fileList is folders and files so open only files
      if (fileList[i]instanceof File)
      {
    
    
      open(fileList[i])
    
    
      // use the document name for the layer name in the merged document
      var activeDocName = app.activeDocument.name;
      var targetDocName = activeDocName.substring(0, activeDocName.lastIndexOf("."));
    
    
      // Copy the Document
      app.activeDocument.selection.selectAll()
      //convertToSmartObject(); THIS ISNT WORKING - CONVERT IT ?
    
    
      app.activeDocument.selection.copy()
    
    
      // don’t save anything we did
      app.activeDocument.close(SaveOptions.DONOTSAVECHANGES)
    
    
      //Select specific layer to paste the copy, this is to make sure the layers are in a specific position
      var doc = app.activeDocument;
      doc.activeLayer = doc.artLayers.getByName("bgr");
    
    
      //Paste Document
      app.activeDocument.paste()
      app.activeDocument.activeLayer.name = targetDocName
    
    
      }
      };
    

    Scriptlistener of use:

    var idPlc = charIDToTypeID( "Plc " );
        var desc2 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
        desc2.putPath( idnull, new File( "C:\\Photos\\myPhoto.psd" ) );
        var idLnkd = charIDToTypeID( "Lnkd" );
        desc2.putBoolean( idLnkd, true );
        var idFTcs = charIDToTypeID( "FTcs" );
        var idQCSt = charIDToTypeID( "QCSt" );
        var idQcsa = charIDToTypeID( "Qcsa" );
        desc2.putEnumerated( idFTcs, idQCSt, idQcsa );
        var idOfst = charIDToTypeID( "Ofst" );
            var desc3 = new ActionDescriptor();
            var idHrzn = charIDToTypeID( "Hrzn" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc3.putUnitDouble( idHrzn, idPxl, 0.000000 );
            var idVrtc = charIDToTypeID( "Vrtc" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc3.putUnitDouble( idVrtc, idPxl, 0.000000 );
        var idOfst = charIDToTypeID( "Ofst" );
        desc2.putObject( idOfst, idOfst, desc3 );
    executeAction( idPlc, desc2, DialogModes.NO );
    
  • How to avoid the transparent background, white in smart object (psb) conversion when the image track high fidelity that we have the ability to ignore track of white up to 16 colors.

    I have an image psd file in photoshop cc 2014 the layer background transparent. I wanted to convert to vector. The best option I've seen was converted first to a smart object in photoshop by layer-> Smart objects-> convert to smart object. then he exported a CPS. Then I opened the file in illustrator and applied image tracking tool, but the background transparent got converted to white but I had the option to skip white up to 16 trace of color. But in the case of Conversion of high fidelity, the option do not know white is not available, what do I do now?

    After using the Trace of the Image and expand the result, just find a part that is filled with white and use Select > same > fill and just delete.

  • How to use smart objects to make models?

    Hey guys,.

    I was download a few models to use in my wallet and I want to start making my own for some I can not find on the web. I managed to do an asset realistic looking for what I want, but I don't know how to add text and other things. Usually, when I open a downloaded PSD mockup I double-click on the smart object, edit the content, press on save and BOOM it is perspective for whatever I change.

    However, I made dynamic object and I am trying to edit the content, so when I double click it just opens the new and all purpose that I created ad, but it does not save the prospect. If that makes sense... (see the screenshots)

    So my question is,

    How to make a dynamic object to change the content (text, images, logo, etc. etc.) on a plain PSB and PSD so it registers in the corner or point of view I want? Is there something different that I do. Can we make a step by step guide?

    It's my design until I double click on the smart layer

    Screen Shot 2013-10-11 at 3.13.12 PM.png

    Here is the image when I double click on the active layer (not exactly what I want).

    Screen Shot 2013-10-11 at 3.13.21 PM.png

    Here's a mockup I downloaded when I double click on the next show pictures of what I want.

    Screen Shot 2013-10-11 at 3.13.50 PM.png

    That's what I want to do in my design of the original, but how do I get the text to do it with a smart object? I want to change the text in my design and apply (not necessarily this design, but my own) to my dynamic object (first image), I created in photoshop. How can I do this?

    Screen Shot 2013-10-11 at 3.14.11 PM.png

    Make the text of the same size or larger and put it into a smart object: filter > convert to smart object.  Without it, you can turn the text, but you do not have as many transform options.  Once you have the text in the dynamic object, select Edition > transform > warp.  Then you can drag the corner of the text points to fit the shape of the card.

  • Quality: Image in the smart object Conversion

    Hi all

    I use an image for a contact on a business card icon, but the print quality of the image is bad.

    Now this will help if I convert the image to a smart object and print the image like that? (The original image is much bigger png file I convert to smart object, and then resize it to the size of the icons)

    Thank you

    Why is this?

    A vector smart object does not export vector data (and the claim has never been by Adobe as I know).

    «A vector mask export vector data when saving pdf or eps with "include vector data".»

  • PS smart object layer to HAVE. How to use?

    I have successfully work vector objects HAVE in the form of objects that are placed in the PS by copy paste or file/place in a layer to smart object in PS, I find value in modified my dimensions of vector object in artificial intelligence and to see updated in PS,.

    but I don't know how to do the opposite, which means a jpeg to PS on a layer to HAVE as smart object, I pick a picture on its own layer in PSCS4 and convert to smart object, I have (right click) export content under jpeg dynamic object and then back in I go file/location of the jpeg smartobject, when I make changes to the PSsmartobject in the PS as a change of SHIFT or dimensional color nothing don't is past in artificial intelligence,

    I wish I had a picture pasted to PS in there by which I can change colors and dimensions or add pixels like paint on this layer smartobject in PS and then got updated it in artificial intelligence...

    Just to clarify, when you edit an image in photoshop, you must save the file in order for Illustrator to know that it was published.

  • Difference between convert it to a smart object and convert for smart filters?

    Hello

    I'm curious to know is there is a difference between the right clicking on a layer and convert it to a smart object vs going to the menu Filter and choose Convert for smart filters?

    I don't think that there is a difference.  When you use a filter on a smart object to a smart filter layer.  The layer must be a dynamic object for a smart filter layer filter it is a catch 22.

    Apply dynamic filters in Photoshop

  • Display linked smart object problem?

    I was really kissing linked smart objects recently. However I found on a few occasions, there are cases where a linked smart object seems to strangely, and I see pixels rounded curiously - almost as if she started scaling the picture a bit.

    Screen Shot 2015-12-16 at 08.03.04.png

    The smart object linked above is correct, but the one below (linked the same file) is rendered differently. Two smart objects have been placed with identical dimensions, any scaling that occur here. Whenever I for now, place this file in the PSD I have this display problem. Around him, my only way is by duplicating that rendered correctly.

    Has anyone else encountered this problem?

    I worked on it.

    Essentially, when you insert the linked smart object even if I was seized to display 100% width & height (by default, that it has been globally as the source PSD has a smaller width/height), I had to then move the smart object after setting width & height 100% in order to then render correctly.

Maybe you are looking for