PNG export with 72 dpi

I want to export an image (bitmap PNG or PSD) as a PNG with transparency in 72 dpi.
InDesign CC 2014 makes the PNG very pixelated. InDesign CC looks fine.
Is this a bug or a feature?

I meant the PDF export is no option for me. The 300 dpi PNG export is better for my workflow but not the best.
But if you can export a PNG, open it into PS, resample, resave, you could also export the page as PDF/X-4 and open it as 72ppi and save as png.
If you are using OSX this AppleScript will do that:
http://www.zenodesign.com/forum/IDtoPDFtoPNG.zip
There have always been problems with ID's png export

Similar Messages

  • I created a photo book in Photoshop elements 11 that contains png files with the invisible backgrounds.  When I export the book to a jpg or a pdf, the png files appear with white backgrounds.

    I created a photo book in Photoshop elements 11 that contains png files with the invisible backgrounds.  When I export the book to a jpg or a pdf, the png files appear with white backgrounds.  Any suggestions on how to fix this? 

    jpg and pdf formats don't support transparency. You need to use a format such as tif, png or psd that does.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Could someone help with question about PNG export from Illustrator?

    I am having issues with PNG exports from Illustrator not opening up once exported.

    ANd exactly sorry, this is useless. You have not provided any details about your export settings, version of AI, system info, how you are trying to view and so on. Just saying that it doesn't work is simply not good enough.
    Mylenium

  • Clips exported with Media Encoder from AE are choppy (CS6)

    Hi!
    I'm using Media Encoder (6.0.3.1) to export clips from AE (11.0.4.2) so that I can work with them in PPro (6.0.5).
    In Media Encoder I go to add AE composition and I've tried the YouTube HD 1080p 25 and the Broadcast HD 1080p 25 presets (the latter creates a much bigger file but I don't think the file size is the issue - for example, the biggest clip of approx. 1 mintute is 276MB).
    The curious thing is that most of the clips that are exported are fine, i.e. they play back fine - the problem is that some of the clips go slow or choppy towards the end of the clip. So the last couple of seconds will be choppy. It basically looks like the frame rate isn't quite right.
    Once exported from Media Encoder, I import them into PPro to do some more work - the problem with the clips is apparent when I play the original file in VLC (for example) or in PPro. So it seems like the problem occurs during the export from AE. When I export the video containing the AE clips from PPro the problem is obviously still there (wishful thinking on my part). I use AE just for keying and making some basic titles, nothing massively complex.
    I had some problems with RAM preview in AE before, in other words, it wasn't playing the clips back in realtime and the exported clips with the problem look exactly like that (i.e. looks like the frame rate isn't right). I deactivated Enable Disk Cache in AE (Multiprocessing was already deactivated) and now I can play back clips ok in AE using RAM preview - even the ones that go choppy towards the end when they are exported with Media Encoder play back fine in AE.
    Could Media Encoder be going back to some previous render files saved somewhere on my system and could that cause some of the exported clips to go choppy?
    I'm new to Adobe so I'm just guessing here and I don't want to go about and delete stuff that might not have anything to do with this problem. As I've adopted the computer I'm working on from my predecessor and it's had several users since, the system is a bit of a mess and there are files all over the place. Empting the Disk Cache doesn't actually delete anything for example.
    I'm really stuck here because I can't finish the projects I started working on with AE.... I would appreciate someone's input!
    Many thanks in advance!
    My system specs:
    Intel Core i7-3930K, 3.20GHz, 16GB RAM, 64-bit operating system, GeForce GTX 680, Windows 7, Creative Suite CS6
    Before using Media Encoder to export clips from AE I was just relying on Dynamic Link between AE and PPro by the way and that made all of the clips choppy for the whole duration (this was before I solved the RAM preview problem and I haven't checked if a working RAM preview would make a difference to dynamic link). So Media Encoder nearly solved the problem. I posted this original problem on creativecow (http://forums.creativecow.net/thread/2/1045810) but no one has gotten back to me about the new issue unfortunately.

    Thanks for your reply!
    I tried using Quicktime with PNG and it created a big file (1.18GB for a 1 minute long clip) that doesn't play back nicely in PPro unfortunately. But I then tried rendering the clip using a lossy format, H.264, in AE and it's playing back ok in PPro! I will just do that for the rest of the clips and hope that this is finally resolved. Many thanks for the tip!
    Out of curisoty, do you know what might be causing the problem when I use Media Encoder?

  • JSFL - PNG export bug in CS5.5, works in CS4 - 8000px limit

    We have a series of JSL scripts that export our ad banners in both SWG and GIF format. The GIFs are compiled by exporting each of the 3 frames of the SWF as PNG images then a .jsx script runs in Photoshop and compiles them into a GIF.
    This all worked fine in Flash CS4. Running the script on FLAs in FLash CS5.5 produces this error at the PNG export stage:
    The bitmap is too large. The largest bitmap that can be created is 8000x8000 pixels.
    The line of code that triggers this error is:
    fl.getDocumentDOM().exportPNG((pngPath+resName+".png"), true, false);
    The path variables are fine and produce a valid path (see below). As you know the first boolean states whether to 'use current PNG export settings' (true) or to show the settings dialog on export (false). The second Boolean states whether to export only the current frame (true) or all frames in the SWF (false).
    If I change the 'use current PNG export settings' to false and show the export dialog and OK the default values the export runs fine (which is how I know there is no issue with the export path).
    Showing the dialog box on each export is not acceptable because we have over 10,000 of these banners to export over the next couple of months.
    I'd like to know:
    [1] Is this an actual bug?
    [2] Can anyone suggest a workaround?

    To reproduce this behaviour create an FLA in CS4, make 3 keyframes, draw a filled rectangle (or whatever) on each frame then save it somewhere (ie C:\test.fla)
    Then create a Flash JavaScript file, paste the following code into it and save it in the same location as the FLA. (ie C:\script.jsfl)
    exportPath = fl.scriptURI.substr(0,fl.scriptURI.lastIndexOf("/"))+"/";
    fl.getDocumentDOM().exportPNG(exportPath+"Frame.png", TRUE, FALSE);
    The first line of code here just gets the location of the jsfl file and removes the filename to give an export path.
    The second line export each frame to the same location as the FLA and JSFL files.
    This should run fine in CS4 and you will see the following in your save location:
    test.fla
    script.jsl
    Frame0001.png
    Frame0002.png
    Frame0003.png
    If you change the first boolean in the export command to FALSE and run the script again you should see the PNG export settings dialog box and when you OK it you will get the same export result.
    Now open the FLA and JSFL files in CS5.5 and run the JSFL. With the boolean set to TRUE you should get an error (the 8000px error), however if you set it to FALSE so that you get the settings dialog when you OK it the export will run fine.
    Change it back to TRUE and you will get an error again.

  • PDF Export reducing dpi on jpeg images

    Using Pages to create a book manuscript to submit to createspace.com which I have successfully done in the past. However createspace's automated reviewer indicates that the first 2 jpegs in the pdf have been reduced to 144 dpi, although the images are 3264 by 2448 uncropped. Identical images later in the book were converted without the dpi reduction. I've tried both replacing the photos and creating the pdf using both the PRINT dialog with photopaper setting and export with best setting.  It seems to be a bug within pages--- any suggestions on workarounds?

    Since you could be talking about any version of Pages, but are having problems that are usually associated with Pages 5, let's assume that you are talking about Pages 5.
    Have you tried exporting the book from Pages '09 instead?
    Peter

  • CS6 After Effects PNG export very slow - Not Multi-Threaded?

    I am rendering an after effects project consisting of over 320,000 source frames of 4000x4000 resolution, outputting over 250,000 frames as PNG files.
    Rendering is instant on our machines, all time is spent "compressing and writing" frames. It is taking forever.
    We have several machines that are all windows 7, with 16 physical cores, 64GB ram, connected to a 4Gbit SAN.
    I did some experimenting, tried using all 16 cores, or 8 cores, or disabled multi-frame rendering even. When this project is rendering my cpu usage is almost non existent,. maybe 1%-5%  at times.
    with 16 frames at a time being rendered it is averaging between 1 and 7 seconds per frame depending on the content of the frame.
    Does Adobe have any plans to multi-thread the PNG exporter? or is there a faster 3rd party plugin out there i could use? It is very slow and doesn't tax the CPU's at all. Even on a single core it doesnt even use 100% cpu while its saving.
    I even tried loading one of the frames into photoshop and simpy hit save as a PNG and it took almost 15 seconds to compress and save. I did it again without compression and it saved the 40MB raw file instantly.
    That is terrible performance for machines like mine that are pretty much the fastest things out there.
    Thanks!

    I appreciate your attempt for a workaround solution, however as you well know you can't render to a video file from multiple machines. we must output directly to individual frames, I setup 8 machines to work on this project, if we did not use compression then we would be writing over 300MB/sec of data which would not be good for our fibre network which unfortunatly is only 4Gbit. And it would be about 10TB of data total.
    As for your workaround Im not sure we could gain speed with your method either way. spending the extra time to encode to a lossless format and then process again in AME sounds like it would take even more time, unless AME could create PNG files at some sort of ridiculous speed maxxing out every core at 100% or something to compress the PNG's. Out of curiosity I will throw some frames at AME and see how long it takes to compress and how much cpu it will use.
    thanks

  • Flv export with alpha

    Hi everybody,
    I'm having the hardest time trying to get an flv with transparency.
    I have a series of numbered photoshop files. Each file contains one partially transparent layer (no mask), and when I open the files as an image sequence, the transparency looks good. However, when I export to FLV with Alpha enabled, my FLV doesn't seem to have an alpha channel.
    Is there something I'm missing here?
    Thanks in advance,
    Brian

    Try to export them as .png 24bit with alpha. Flash works well with PNG.

  • Illustrator CS5 Javascript export with Use Artboards?

    Hi
    Is there any way to code the export of png files with the Use Artboards option in Javascripting?
    Thanks
    J

    Hi,
    Have you try this (no tested on CS5), and i didn't test the result, if there are objects outer artboard.
    art.chrome

  • Error message ''Disk Full' when trying to export with CS6, works fine in 5.5

    I get an error message when I try to export media in Premiere CS6 that I don't have in CS5.5
    I use export media for a AVCHD 60fps sequence with a few photoshop images on top of the main track. In the export settings I choose ''match sequence settings'' which gives me a .mpeg I- frame, 1920 x 1080 P, 60fps, quality 50, and a I tick the ''use maximum render quality'' check box at the bottom.
    It used to work fine but now I get a message: Disk Full where there is 1.5 TB free on the disk?
    I have the exact same sequence made in Premiere Pro CS 5.5 and it exports fine.
    It started to act weird after I used the queue for the first time and it went to the CS6 encoder.
    Since I used that once and it gave me that message for the first time, even when I try to do the same thing directly in Premiere CS6 , I always get the same error message.
    Question 2, is there a place to change the settings from 50 to 100 for the quality of this export profile?
    By the way I can export with other profiles without problems but this setting is the only one that I've seen that lets me keep my 60 frames per second in the export
    process. (Example: I can export this sequence in the H.264, 1920 x 1080, 30fps, high quality preset, using the maximum render quality in CS6)

    Hi Guys,
    Thanks for the input but if you read my message correctly and until the end I already can export to other settings and I want an answer to this problem. There's no logical explanation to why this suddenly wouldn't work with the same sequence that it used to do fine with and that CS 5.5 handles fine.
    As I said earlier this is the only setting that lets me export my sequence with the 60 fps, that I know of, for further and easier manipulation. As my main camera provides me with these 60 fps I'd really like to be able to have them left in that transition phase and, no, I'm not gonna give up until I know, really, what's going on and solve that problem. If this is a bug it needs to be fixed, if not I want to know what's happening.
    Also there's no answer to my question 2: Question 2, is there a place to change the settings from 50 to 100 for the quality of this export profile?
    So for you experts out there the question is still hanging.

  • How do I stop Illustrator automatically adding numbers to file name when exporting with artboard?

    I need to export with artboard. Illustrator automatically adds a number to my original file name. It won't even let me replace the old file. It is extremely annoying and makes flow with other programs really hard because they can't auto update, since the file name  changes. When you have multiple files, you can't be manually renaming all the time. Anyone knows how to fix this? Thanks.

    This has been discussed a few times, and here is a summary of the usual solutions.
    http://forums.adobe.com/message/2989508#2989508
    What is it EXACTLY you are trying to do. Are you trying to export a single page from filename.ai  and make it filename.psd, (without any number afterwards). In that case you could delete the extra artboards prior to export, and then you won't have to checked use artbaords as there is only one page. Otherwise I would plan ahead so your end result will be filename-01.jpg,  filename-02.jpg, and then everytime you use export artbaords those names will replace.
    I am happy with the function as is, and would prefer to have a serial number automatically after the name when checking use artboards. But sounds liek you and others desire more options and thte ability to turn off adding to the filename.

  • HELP! What are the settings to export with the highest quality (I will show my project in a cinema.)

    Hello,
    I have a project I will be showing at a local cinema, and I need to have the best possible quality for that......
    My source footage is SD, so I am exporting it as a MPEG2-DVD project, the first time I exported (with the default MPEG2-DVD settings) and burned it, it looked good (at least on my 34" TV) but I am not sure if that quality will be as good when projected on a cinema screen...
    So, what I need to know is, which of the MPEG2-DVD export settings I must change in order to get the quality I am looking for.....
    BTW I am using Adobe Premiere CS4 and the whole Creative Suite 4....
    Thanks in advance
    Al

    If it looks good on your tv it will look good at the cinema.
    The resolution will still be 720x480/576 if a dvd player is hooked up to the projector.

  • Videos export with purple/green artifacts/splotches/flashes with Media Encoder CC but export fine with Premiere Pro CC?

    I use Premiere Pro CC to edit videos, and videos render fine when I export through Premiere Pro, but when I try to use Media Encoder CC, the video exports with weird splotches of green/purple artifacts all throughout. It almost looks like the video is glitching and having a seizure of green and purple. No idea why this happens. Could anybody help me? I use Media Encoder to export bulks of videos at a time through its queue feature, which is why I prefer to use Media Encoder for video exporting.
    Please and thanks.
    Specs:
    Motherboard:  MSI® Z87-G45 Gaming [Red on Black color] 2x SLI/CrossFire
    Processor:  Intel® Core™ i7 4770K 3.5GHz/3.9GHz Turbo 8MB L3 Cache HD 4600
    Memory:  16GB Corsair® Vengeance™ DDR3-1600 1.5V (2x8GB)
    Graphics and GPGPU Accelerator: AMD R9 295x2
    Power Supply:  1300W EVGA
    Operating System:  Microsoft Windows 7 Home Premium 64-bit

    Mitch,
    I was hoping that you and others might have some insight as to whether the purple and green artifacts / splotches seen in the attached screenshots (taken from 4 consecutive frames here but occurring through the entirety of the clip) could possibly have resulted from exporting video with ~ Premiere Pro CS5 or 6 ? As seen below, these splotches alternate back and forth between purple and green in every consecutive frame. I was also hoping that someone might know if this is a relatively common type of artifact and how it is caused.

  • Error In Query Level export with  multiple conditions

    When i am running the following Query for Export with i am getting the result.
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and sal !=2850"' LOG=log011.log FILE=exp.dmp
    Export: Release 10.2.0.1.0 - Production on Wed Jan 30 10:01:27 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 10 rows exported
    EXP-00091: Exporting questionable statistics.
    EXP-00091: Exporting questionable statistics.
    Export terminated successfully with warnings.
    But When I run with The following condition then it shows the following error...
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!='CLERK' "' LOG=log011.log FILE=Exp01.dmp
    LRM-00111: no closing quote for value ' LOG=log01'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY="WHERE deptno > 10 and job!='CLERK'" LOG=log5.log FILE=exp01.dmp
    LRM-00112: multiple values not allowed for parameter 'query'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    Please suggest a solution for it.

    966523 wrote:
    Padma.... wrote:
    Hi,
    The single quotes used for CLERK are causing the issue most probably.
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!='CLERK' "' LOG=log011.log FILE=Exp01.dmp
    try replacing with this
    C:\Documents and Settings\ITL>exp scott/tiger@orcl tables=(emp) QUERY='"WHERE deptno > 10 and job!=''CLERK'' "' LOG=log011.log FILE=Exp01.dmp
    Two single quotes(not double quotes) in the place of one single quote for CLERK.
    Thanks
    Padma...Thanks A Lot...if/when you place all inside control file, then you do not have to worry about such complications

  • My new iMac with FCPX crashes when rendering complex templates and crashes when exporting with Motion 5

    My new iMac with FCPX crashes when rendering complex templates and crashes when exporting with Motion 5
    Using Motion 5.0.6 and Final Cut Pro X 10.0.7 on New iMac (December 2012)  Mountain Lion,
    Intel Core i7 quad-core a 3,4GHz, Turbo Boost fino a 3,9GHz
    32GB di SDRAM DDR3 a 1600MHz - 4 x 8GB
    Fusion Drive da 3TB
    NVIDIA GeForce GTX 680MX 2GB GDDR5
    During the rendering of complex FCPX mac crashes and I have to force a restart.
    I also happens when I try to export movies with Motion 5.
    Does anyone have the same problem with my new iMac?

    Problems such as yours are sometimes caused by files that should belong to you but are locked or have wrong permissions. This procedure will check for such files. It makes no changes and therefore will not, in itself, solve your problem.
    First, empty the Trash.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Triple-click anywhere in the line below to select it, then drag or copy it — do not type — into the Terminal window:
    find . $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 -o -acl \) 2> /dev/null | wc -l
    Press return. The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    The output of this command, on a line directly below what you entered, will be a number such as "35." Please post it in a reply.

Maybe you are looking for

  • Lexical Parameter in Reports 6i Program Unit

    A report I'm writing requires me to use the lexical parameter in a program unit rather than a query in the data model. Lexical parameters in a query have always worked with the example "WHERE &my_parameter". But using "WHERE :my_parameter" or "WHERE

  • How do I make middle click open a link in a new tab?

    Previously, when I clicked a link using the wheel click on my mouse, it opened the link in a new tab. I recently updated firefox, and now if I middle click (wheel click) on a link in Firefox, nothing happens. I just want this feature back. I tried lo

  • Showing pictures iphone 4 only portrait mode

    Hi, when I look at pictures in my Ipone 4 they only show up in portrait mode. It vill not work "turning the phone" showing the pictures in landscape. This goes as well for writing sms etc, only possible in portrait mode. ANy idea about the problem an

  • Old iMac,new solid state drive?

    Is it possible to replace the hard drive in my 2008 Intel iMac with a newer solid state drive? Processor           2.66 Ghz Intel Core 2 Duo Memory             4GB 667 Mhz DR2 SDRAM Graphics            ATI Radeon HD 2600 Pro 256 MB Software          

  • Non-receipt of an email.

    Everytime I log on to my email account a single large (7-8MB) email being received is blocked or stopped. All other arriving emails arrive without problem. How can I identify the sender of the email and either be able to receive it and read it or can