Image File Name

Hi
I Need to get link name in newHeights, can any one help me
newHeights = { 
linkname: 4.4,
  /*  "O1.tif": 4.4, 
    "IMG_1334.jpg": 4.4, 
    "IMG_1335.jpg": 1, 
for (i = 0, l = doc.links.length; i < l; i++) { 
var link = doc.links;
var sourcefile = link[i].filePath;
alert (sourcefile);
var linkname = link[i].name;
    if (linkname in newHeights) { 
        pageItem = link.parent.parent; 
        height = pageItem.visibleBounds[2] - pageItem.visibleBounds[0]; 
        target = new UnitValue(newHeights[linkname], 'in').as('pt'); 
        scale = target / height; 
        matrix = app.transformationMatrices.add({horizontalScaleFactor: scale, verticalScaleFactor: scale}); 
        pageItem.transform(CoordinateSpaces.INNER_COORDINATES, AnchorPoint.CENTER_ANCHOR, matrix); 

Hi,
I have linked a sample PDF document and
modified your code some. This works for me:
var doc = app.activeDocument;
var newHeights = {
linkname: 4.4,
"SampleDocument-5.pdf": 4.4
    "IMG_1334.jpg": 4.4,
    "IMG_1335.jpg": 1,
for (i = 0, l = doc.links.length; i < l; i++) {
var link = doc.links;
var sourcefile = link[i].filePath;
alert (sourcefile);
var linkname = link[i].name;
    if (linkname in newHeights) {
       var curLink = link[i];
        pageItem = curLink.parent.parent;
        height = pageItem.visibleBounds[2] - pageItem.visibleBounds[0];
        target = new UnitValue(newHeights[linkname], 'in').as('pt');
        scale = target / height;
        matrix = app.transformationMatrices.add({horizontalScaleFactor: scale, verticalScaleFactor: scale});
        pageItem.transform(CoordinateSpaces.INNER_COORDINATES, AnchorPoint.CENTER_ANCHOR, matrix);

Similar Messages

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • Get image file name

    Hi ALL,
    I want all image file naming like a caption in my source document. Source document contains more than 100 images.
    But i got a script through the forum and tuned for my script. Still, the file naming comes for the Ist page image only.
    From second page onwards the file naming not comes like a caption.
    Trying script:
    //To Get image file name
    var tgt = app.activeDocument.rectangles;
    for (i=0;i<tgt.length;i++){
        myCaption = app.activeDocument.textFrames.add();
        myCaption.textFramePreferences.verticalJustification = VerticalJustification.TOP_ALIGN
        myCaption.contents = tgt[i].graphics[0].itemLink.name
        myCaption.paragraphs[0].justification = Justification.CENTER_ALIGN;
        bnds = tgt[i].visibleBounds;
        myCaption.visibleBounds =
            [bnds[2]+12, bnds[1], bnds[2]+4,bnds[3]];
            //[bnds[0]-6, bnds[1], bnds[0]-1,bnds[3]];
            myCaption.fit(FitOptions.FRAME_TO_CONTENT);
    Thanks in advance
    BEGINNER

    If you use the add() method in conjunction with the document without specifying the page or better the spread, all objects added will end up on the first spread of your document.
    But your testing scenario is also too narrow. You are expecting:
    1. All your graphics are sitting in Rectangle objects (what about Ovals or Polygons?)
    Therefore: All graphics placed in ovals or polygons are left out.
    2. That really ALL rectangles in your document contain graphics
    You are in trouble, if there happen to be empty rectangles on a page. I would suggest to test that with your script. It will give you an error, because there is no graphics[0] for this specific rectangle, where you can draw the "name" for the "itemLink".
    3. That there are no graphics in anchored objects or pasted inside other objects; left alone graphics inside table cells.
    And who can say that thiese three restrictions exist in all documents you want to run this script against?
    So, if you want to get to all image files in the document, why don't you start with the images in the first place?
    Let's see:
    the Document object has an "allGraphics" property.
    Use that as a starting point and you will not missing a single graphic.*
    Iterate through "allGraphics" will get you:
    the "name" of the placed image through its itemLink.name property;
    the container of the graphic, that's the "parent" of the graphic.
    Now you need one other thing:
    the page, or even better(!) the spread where the graphic is located. Imagine a graphic sitting outside of a page.
    If you want to handle thiese, you must know the spread.
    If  writing this script for InDesign CS5 or above, you are in luck. There is a "parentPage" property of the "Graphic" object, you could use for your add() method. For graphics outside of pages this property will be "null".
    And another important thing:
    if a graphic is copy/pasted from e.g. PhotoShop to InDesign, the "itemLink"  property of that graphic is also "null".
    We can handle that in a try/catch scenario…
    //Scope: all graphics on all pages
    //(that includes graphics of anchored objects, active states of MSOs, graphics in table cells as well)
    var tgt = app.activeDocument.allGraphics;
    for(var i=0;i<tgt.length;i++){
        //Narrow the scope to all graphics on pages only:
        if(tgt[i].parentPage != null){
            //What to do with graphics, that are pasted directly from none-InDesign files:
            //the caption will read "Undefined"
            try{
            var myName = tgt[i].itemLink.name;
            }catch(e){var myName = "Undefined"};
            //targets the page of the graphic:
            var myPage = tgt[i].parentPage;
            //adds a text frame to the page of the graphic:
            var myCaption = myPage.textFrames.add();
            myCaption.textFramePreferences.verticalJustification = VerticalJustification.TOP_ALIGN;
            myCaption.contents = myName;
            myCaption.paragraphs[0].justification = Justification.CENTER_ALIGN;
            //Why visible bounds and not geometric bounds?
            var bnds = tgt[i].parent.visibleBounds;
            myCaption.visibleBounds = [bnds[2]+12, bnds[1], bnds[2]+4,bnds[3]];
            myCaption.fit(FitOptions.FRAME_TO_CONTENT);
    *Not exactly true, because it is missing graphics in not-active states of  MultiStateObjects.
    Since MSOs were introduced in InDesign CS5 the DOM documentation left out this fact so far.
    //EDIT: in the first version I had a comment on a different scope. Since  Document Objects have no "graphic" property, I removed that comment. Sorry.
    Uwe
    P.S. And a Happy New Year to all!
    Message was edited by: Laubender

  • How do I call image file names from MySQL & display the image?

    Hello everyone,
    I have image file names (not the full URL) stored in a MySQL database. The MySQL database is part of MAMP 1.7 and I am using Dreamweaver CS3 on a Mac Book Pro.
    I would like to create a catalog page using thumbnails, and PayPal buttons displayed within a table, in rows. With the image centered and the PayPal button directly underneath the image.
    How do I use PHP to call the thumbnail images as an image not the file name, to be displayed in the table?
    Thanks in advance.

    slam38 wrote:
    How do I use PHP to call the thumbnail images as an image not the file name, to be displayed in the table?
    Open the Insert Image dialog box in the normal way, and navigate to the folder that contains the images. Then copy to your clipboard the value in the URL field, and click the Data Sources button. The following screenshot was taken in the Windows version, but the only difference is that Data Sources is a radio button at the top of the dialog box in Windows. It's a button at the bottom in the Mac:
    After selecting Data Sources, select the image field from the approriate recordset. Then put your cursor in the URL field and paste in the path that you copied to your clipboard earlier.

  • Adding image file name and logo to image

    Can you do batch processing of images to automatically insert the image file name, say at the bottom along with a logo, in black font. The logo stays constant but the image deatils will change with each image?
    Can this be done in Lightroom or then the full Photoshop?
    Thanks!

    I've taken the script mentioned above and modified it to the best of my abilities.  Still getting the same error, unfortunately:
    function main(){
    var suffix ="cropped";
    var docPath =Folder("~/Desktop");
    if(!docPath.exists){
       alert(docPath + " does not exist!\n Please create it!");
       return;
    var fileName =activeDocument.name.match(/(.*)\.[^\.]+$/)[1];
    var fileExt =activeDocument.name.toLowerCase().match(/[^\.]+$/).toString();
    var saveFile = new File(docPath +"/"+fileName+suffix+'.'+fileExt);
    switch (fileExt){
       case 'jpeg' : SaveJPEG(saveFile); break;
       default : alert("Unknown filetype please use manual save!"); break;
    if(documents.length) main();
    function SaveJPEG(saveFile, jpegQuality){
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality; //1-12
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);

  • How do I not show image file name, only url link - Acrobat Pro 9

    Both file name and url ink show when placing cursor over image. I want to only have url link appear.
    And if that's not possible, I want to then change the image file name. Any ideas?

    Use a button field for the link. You will have to add the action or JS code to open the link.

  • RH8 - Image File Names

    Greetings,
    In a generated project, created in the RH8, when the user hovers over an image, the file name displays. I checked the image properties and Screen Tip text field is empty.
    How can I prevent the image file name from displaying in the generated project?
    Thanks

    Hi there
    When you examine the generated code what do you see? Is there a Title attribute or an Alt attribute? You didn't say what the output type was. Is it WebHelp? If so, did you enable Section 508 options when you generated? (Part of being Section 508 compliant is giving images corresponding names)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Image file names changed on Homepage

    I have found, on several occasion,s that the titles of the images on my homepage have lost their file names and show the filename iPhoto gives it when uploading to Homepage i.e. Image123A123B123C etc Sometimes, it shows OK when viewing the page but not when editing the page.
    All my images are given my job number reference for people to order from so loosing them is a big issue.
    homepage.mac.com/cjbphotography/

    The exif "image file name" is probably only used by some cameras, I don't have anything in there either.
    Instead use "file name" under "other", that is the actual file name of the master file.

  • Help with image file names when using Import Word document feature

    Hello,
    I am using File >> Import >> Word document into an HTML template.  If the Word document contains images, the images are written to the directory specified in my Site Default Image Folder.  Here is my question: As I was teaching myself the Import function, one time the images were automatically named to match the page name.  So for example, if my page is named Create.html, the images would be named Create_image001.jpg, Create_image002.jpg, etc.  I can't remember how I enabled this feature (or maybe I was dreaming) but if anyone knows how to control the name of the images imported from MS Word, please let me know.  I've searched and Googled for hours and can't find a way to control the image file names.
    Thanks in advance,
    Shellie

    I was hoping that this would be fixed in the 10.8.2 upgrade but it has not.  Anyone have any luck?  Earlier today I was trying to write a paper and navigating between 10 pdfs was a nightmare without being able to hover my mouse for the titles like I used to. 

  • Convert image file names to labels and resizing images according to frame. Possible??

    Hi all,
    I have posted this question hastily in the main mac forum but then i realized it is a scripting question so I repost here.
    Q1: I have a client with 700+ images who has named the images with numbers and the caption:
    eg: 1.II.34. Walking down the road towards the building.tiff
    This is the name of the image file itself
    Is there a way to import the name of the file (possibly without the extension) and place it as a caption under the image without copying and pasting? A script maybe?
    I tried the labelgraphics script. Unfortunately it returned the extension as well. I was given a solution but did not work for me since it deleted everything after the first dot on the name. This was:
    in labelgraphics on line 105, change
    myLabel = myLink.name
    to
    myLabel = myLink.name.split('.')[0]
    So how can we tackle this so it deletes everything after the LAST dot?
    Q2: The image files I am given are all huge tiff files. I use the full 100% of the images but in my document they have to be much smaller . They are usually scaled down to 25-35% of the original file. So I end up with huge, unneeded documents.
    Is there a script that would work together with photoshop maybe?
    It would need to read the frames dimensions the image is in, open the linked file inside photoshop, resize it with a specified interpolation to maybe 110% of the frame's dimensions, set the resolution (if not set) to 300 dpi save the image as a copy (or with a suffix or prefix), leave photoshop open (for the next image to be processed), relink to the new image and go to the next image
    I know it sounds a lot but I was amazed by the issues people handle in this forum and thought I would give it a try
    Thank you in advance
    Michael

    Peter thank you so much. It works like a charm.
    As for Q2, I spent some time doing research and came up with a couple of scripts that sound like they could do the trick.
    a) Image Transform or Rasterize
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1509 022#
    b) Resample Project Images to 100%
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1612 518#
    Still, since I am such an ignorant I do not know which one would be the proper one.
    Any suggestions would be highly appreciated.
    Thank you once more
    Michael

  • Changing image file names

    hi all.
    can anyone help me find a thread (can i run a search somehow in ("Your Stuff"?) where folks were kind enough to help me understand how to change file names?
    i am reading through some help documentation on Batch Change but i am trying to remember what i should be doing to most efficiently solve my problem.
    basically i have images in aperture which have non-sensical names related to their originally existing in a pc folder organization originally and i would like to both rename them in aperture but also be able to have them EXPORTED to my desktop so i can upload them to the web with some reasonable sounding title such as "client1-town1-HousingType-FirmName-photographer.png" or something similar. right now the images i want to publish are ORGANIZED IN ALBUMS and have names like "folio_construction_other_turtle_134543.png"
    i think i WOULD LIKE to change the name of the master but i am not totally sure about this and when i run a Metadata > Batch Change and pull down version name i get selections that i do not fully understand.
    https://www.dropbox.com/s/yvu1u7eskbmhcik/Screen%20Shot%202012-12-03%20at%201.58 .46%20PM.png
    i /am/ familiar with a handle little tool called Name Mangler which basically allows me to easily delete all the PREFIX information (such as "folio_construction_other_turtle" and then to pre-pend something like "client1-town1-HousingType-FirmName-photographer" in front of the image number which would be ideal...
    apologies for asking this again but until i get through it once i am finding it all a bit tricky.
    THANKS

    Hi Leonie.
    Thank you so much. I am going to be doing a lot of this and just so i understand:
    Delete the images you exported and renamed from your Aperture library before reimporting, to avoid creating duplicates. When deleting from the album that you used to export, use the command "delete version", not "delete from album". Do not delete the projects that the images came from, only the images.
    Can you help me understand which images i am deleting? I mean, is there a way to delete just the images in the ALBUM because if i have to go in and delete the images from a Project there are going to be a lot more images in the Project and it is going to be very hard to tell which images have been renamed and which have not been renamed. If i have to do this by deleting the images in the Project, i suppose i could use one of your suggestions to color all the images in an ALBUM, say yellow, and then see where the images show up in Projects but even then i think it will be a bit tricky. Are you saying i can just delete the images in the ALBUM by doing "Delete Version"?
    Use "File > import" to reimport your image files. I'd put all images that shall be imported into the same project into one folder, and then import each folder on its own.
    OK. So - well - so now i am importing all of the images that i originally had in the Database and they are /basically/ (i moved the folder organization around a little bit while the images were on my desktop in this first attempt...) - they are basically getting IMPORTED into Aperture now with the "new" images coming into the database into a new Project that is named according to the Album that they were in?
    This is a little tricky for me. Will the old Albums still exist? What if i had more than one Album with an image in it. Also, this "new" image will be in a /new/ Project but will it still be in the OLD PROJECT with the old name? Or, i guess i am getting a little confused as to how this will work.
    Select the project in the Library Inspector, that you want to import the folder of images into, then set the "Destination" in   "Import settings > Aperture Library" brick to this project  and set "Store Files" to "In the Aperture Library".
    OK. I can try this here soon. What does Store Files in the Aperture Library do? I guess these images are getting imported as if they are new and they are getting imported with no external references?
    Set "Rename files" to "None" or "version name". Both will keep the name you edited.
    OK. Not sure i totally understand but i can try this as well. I guess this is making sure Aperture will keep the original names.
    THANKS

  • Render PDF Pages As Images - File names are gibberish

    I have a workflow that takes a folder of PDF's and converts them to JPG's.
    The problem is that Automator is giving the converted files random gibberish filenames such as Kft56Fvg.jpeg and not the names of the original files.
    Anyone know what's going on?

    At the bottom of the list of actions in Automator is an area with the description of the selected action in the listing (but not the workflow). If this description isn't visible, there is a button at the bottom of the window near the bottom left corner of the window for revealing the description.
    If you need to see the description of an action that is in the workflow on the right side of the window, there is a button on the action itself at its bottom left that will reveal the description of the action. This is so you won't have to find it again in the listing just to review its description.
    For you're immediate convenience and peace of mind, this is the description you'll find for "Render PDF Pages as Images":
    ---- Begin description ----
    This action will render each page of the passed PDF files as images.
    Note: As the names of the resulting images are randomly generated, this action is often followed by the Rename Finder Items > Make Sequential action.
    Input: PDF files
    Options: Image format, color model, resolution, and compression
    Result: (Image files) References to the rendered image files.
    ---- End description ----
    Since a PDF can contain many pages, this action could produce many images from the same PDF. So, that could further complicate naming the new images when multiple PDFs are involved if you need special names.

  • Changing image file name

    I'm working with dreamweaver 8 for Mac.
    Imagine that you have a html page with more than 200 images, that you have changed many times during the last few years, some have been deleted others have been added. And some are not linked any more.
    At the beginning the pictures were numbered from the top of the page to the bottom of the page in order (picture1, picture2....), now they are messed up (picture13, picture 1....).
    If I rename the images in my local file folder, DW update it on the html page. Unfortunately in the local file folder the pictures are not displayed, I have to open all of them (200 images) on my desktop ! I The result: a big mess. So my question is:
    Is it possible to make a file name change on the html page, and DW update it on the local files folder?
    I hope I've been clear. Thanks for your help.

    What I would do is create a PHP script that places the images in a document, sorted on date.
    If you Google the subject, you will see many examples on how to do this. One such search gave me this http://www.javascriptkit.com/javatutors/externalphp2.shtml
    If you then see an image that you no longer need, you can remove it from the directory. This will leave you with the images that you do need sorted from earliest date to the latest  date.
    Keep this script for the document that you want to show the images on. Future maintenance will consist of removing the unwanted images from the directory and adding new ones. The PHP page will automatically be updated. No worries with file names, as long as you do not have two the same.
    Although I mention PHP, the same goes for all serverside scripts.
    Good luck.
    Gramps

  • Resolving image file name in an UIImageView subclass

    I have created a class inherited from UIImageView, and I'm instantiating objects of that type in Interface Builder (by adding an UIImageView to the current view and setting its type to my subclass).
    What I want to do is to resolve the name of the image file specified in IB for that UIImageView (even if doing so is not guaranteed to be standard code). The rather obvious place to do this is the initWithCoder method of my class.
    This method gets indeed called during the instantiation of the nib file, and I can get some info out of the decoder object. However, I don't know how I could get the name of the image file specified for that UIImageView. The xib file has a <object class="NSCustomResource" key="IBUIImage"> section inside which there's a <string key="NSResourceName"> tag which specifies the file name. However, I don't know how to retrieve it from the decoder.
    (I suppose it should be retrieved using [decoder decodeObjectForKey:] but I have no idea what the key could be.)
    Any suggestions? Are there any other possible approaches to this (perhaps even official ones)?

    WarpRulez wrote:
    This must by possible, rather obviously. If it wasn't, then there's just no way the UIImageView could possibly set up itself according to the data in the NSCoder object. It has to somehow be able to, among other things, retrieve the name of the image file so that it can load it.
    UIImageView doesn't load an image file, it's inited with a UIImage that was in turn inited from the contents of a file. I don't think any info about the location of the original file is needed by or given to UIImageView.
    If the file path were saved anywhere it would be in UIImage. I'm looking at UIImage.h right now and don't see anything that looks like it might store a path or url. If you could subclass UIImage, you could override imageNamed to capture the path. But I sure don't see any way to get IB to buy into a UIImage subclass. IB doesn't expose UIImage anywhere I know about.
    There've been some similar threads here. One developer wound up naming all the image files with numbers (e.g. 001.jpg, 002.png, etc.) and setting imageView.tag to the number.
    Pending a more favorable discovery, why not go for a manual method for now? E.g. if you're matching all the images with UIImageViews in IB anyway, why not just log the path names and tag numbers in a plist and pull that into a dictionary at run time?
    I know you're not going to like my suggestion after all the time you've spent looking for an elegant solution. Trust me, I +really really+ wish I could've just written, "The path name key is "UIImageSourceURL". Then you'd be happy and I'd be happy. I've almost given up helping with "How can I do this?" questions when the answer is "You can't". It's a thankless task

  • Workflow with images,file names and full captions.

    I am working on my mother's memoirs, which will include a block of photo pages.  Those pages will be laid out by a friend.  I would like to use a contct sheet of some kind as a reference to what is to be included with what caption but am discovering just how difficult PE8 Organizer is to work with.
    First I tried the obvious print contact sheet and discoverd that captions are truncated if they run wider than the image itself.
    Secondly I tried a photo book and found that large images do not automatically resize to fit the picture placeholders. Seemed to pick up full caption but I have too many pictures to manually fit.
    Third I tried a web page output but then captions can't be copy and pasted for inclusion into group caption panels!
    Then it occurred to me that even just a list of file names and captions would be sufficient ... but even that is too much for an Adobe catalog to give up!
    All I want is a reference to images and captions, ideally grouped 4 at a time per page as they will be shown in those picture pages.
    Any suggestions would be welcomed.

    I can see two ways to do what you want.
    The first one is to divide you workflow in two steps. Install the free software FastStone image resizer, which can do a batch to resize and put your caption where you want. Batch process the files in a new folder while renaming them with something like 'old name'+ 'resized'. This is to avoid duplicate names. Import them into the organizer. Create an album with all those files, and put them in the correct printing order. Select all and export 'as new files' renaming them with 'common base name', in original format. That should keep the custom order of your project.
    There are also batch renaming and resizing with the affordable Elements+ add-on, but I suppose the first solution will be easier.

  • Image File Names

    Is there any way to tell RH to NOT rename image files when importing/linking to a FrameMaker document?  It would help the poor image quality problem if I could copy the originals into the RH folders, replacing the severly downsampled images RH is using with the better quality ones, but renaming the originals is time consuming and annoying (particularly if RH changes the names).
    Failing that, since most of the images in FM are linked, is there a way to have RH also link to those images instead of creating its own versions?
    Thanks for the help.

    I have played with just about everything at some point to combat the image quality issue.
    I have found that, if the images in FM are linked instead of embedded, it does maintain the file name but adds underscores between words.  The extension gets changed if the format isn't one that RH likes but the name bit is the same.
    Images embedded in the FM doc seem to fare better in the conversion than linked images do, but the filenames are generated by RH.  Why would embedded images convert better than ones with a live link?
    Pasting the orignal files (in PNG format) over RHs converted version works, but all sizing is lost.  Sizing it manually, again, mangles the image.  The problem appears to be with RHs scaling algorithm.  Importing an embedded image works because there is no scaling:  RH just converts whatever it finds in FM.  Linked images may need to be scaled during the conversion, so RH mangles the corpse.
    How does that sound?  And is there any fix or workaround?
    I am currently thinking of using Conditional tags in the FM doc, putting in 2 images for each image.  The second is for RH only, using the same image file, but imported at 96dpi and sized sligthly bigger and with no text wrapping.  Seems a bit clunky, but the end result is much better.

Maybe you are looking for