Is there a way to automatically shrink images in an epub file to fit the visible screen?

Is there a way to automatically shrink images in an epub file to automatically shrink to fit the screen in Adobe Digital Editions?  This happens automatically with the Kindle and I assume with the iPad and Nook as well.  However, the large images in the epub do not automatically shrink to fit the Adobe Digital Editions viewer. Is this an issue with the software or the epub file?
Thanks

Hi Ken,
In my code i have something like that:
public static bool IsEmbeddedAttachment(Outlook.Attachment attachment)
//Anexos que não são embedded são obrigatóriamente olByValue, porém os embedded podem ser de qualquer tipo
if (attachment.Type != Outlook.OlAttachmentType.olByValue)
return true;
//Busca a propriedade contentID do anexo. Anexos embedded não precisam necessáriamente gerar um ContentID. Anexos fixos não geram ContentID
string strATTACH_CONTENT_ID = attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x3712001E").ToString();
//Busca a propriedade contentLocation. Para que o anexo seja embedded é necessario que essa propriedade esteja vazia ou nulla
string strATTACH_CONTENT_LOCATION = attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x3713001E").ToString();
if (!string.IsNullOrWhiteSpace(strATTACH_CONTENT_ID) || !string.IsNullOrWhiteSpace(strATTACH_CONTENT_LOCATION))
//Busca a propriedade AttachFlag se for diferente de 4 é uma imagem embedded
if ((int)attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x37140003") == 4)
return true;
if ((int)attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x37050003") == 6)
return true;
if ((int)attachment.PropertyAccessor.GetProperty(@"http://schemas.microsoft.com/mapi/proptag/0x37140003") == 4)
return true;
return false;
And was working very well until last week. 
I have a problem with a single email. This email attachments possess 2 PDF type files. These files are not embbed in the email, but they have the contentId property. Could you tell me why? or if its possible discovery why this happens?
PS.: Sorry about my english.
Att's,
Anderson Rissardi.

Similar Messages

  • Is there a way to automatically add a page to my current form when the user marks the check box?

    I have an existing expense report form that I created using Adobe Pro's Form Tools. The user enters all the appropriate information (ie, vendor, amount, business justification, etc.) and then it calculates all the expenses at the bottom.
    I have added a box next to each line item to be checked by the user in the case that they have an expense with a missing receipt.
    Is there a way to have a pre-existing missing receipt form, be added at the end of the expense report, each time the user marks one of these missing receipt check boxes?
    If so, is there a way to have all the expense line item data automatically fill in the information on the added missing receipt form?
    I am using Adobe Pro's Form tool rather than Livecycle because it is compatible with my IPAD.
    Thanks,

    One word: Templates
    For more information, see: page: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_Dev_Templates.80.1.html
    Unfortunately, templates don't work with Reader either, unless the document is Reader-enabled with LiveCycle Reader Extensions.

  • Is there a way to train preview.app to view .epub files?

    I can do a quickview (spacebar) on so many file types, but not a simple .epub file which is nothing but zipped html and css. Is there a way to educate Preview.app on new file formats?

    <https://www.google.com/search?q=quickview+plugins&ie=utf-8&oe=utf-8&aq=t&rls=or g.mozilla:en-US:official&client=firefox-a&channel=sb#channel=sb&q=epub+quickview +plugins&rls=org.mozilla:en-US:official>

  • Is there a way to automate Reaktor in Logic 7

    Is there a way to automate Reaktor in Logic 7.. i.e all the nobs?
    Thanks soo much!
    Ian Buzz
    http://www.relentlessdancemusic.com/
    PowerMac G5   Mac OS X (10.4.8)  

    The best way to automate any NI instrument in Logic is to use Kore from NI.
    Kore opens as a pi and acts as host to single or multiple AU instances. Kore hardware has 8 buttons and 8 controllers assigned to control all parameters (all set up in factory presets, but also user controllable)
    When you open a software instrument in Logic using kore, Logic automatically assigns automation to 8 pages of the 16 controls. You do not need to set this up in Logic's cdontroller assignments, it happens automatically
    so if I open a sound in reactor I have no instant automation
    If I open the same sound in Kore I get up to 64 continuous controllers and 64 on/off switches instantly.
    I still find it hard to come to terms with how well kore works and how simple it is to use. Highly recommended.

  • Is there a way to remove a image?

    hi
    is there a way to remove a image that is created and append to the form in J2me.? thanks

    i will be a bit more specific so u can get a rough idea-below is my code
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.io.*;
    public class TCPClient extends MIDlet implements CommandListener {
    private Display display;
    private Form form;
    private Command exit, scgIndex;
    private TextField txtField;
    private ChoiceGroup sImage;
    private int sIndex;
    public TCPClient(){
    display=Display.getDisplay(this);
    form=new Form("TCPClient");
    txtField=new TextField("type what u want to send","that's all folks",30,TextField.ANY);
    sImage= new ChoiceGroup("pls select", Choice.EXCLUSIVE);
    sImage.append("no image",null); //=0
    sImage.append("image",null); //=1
    exit=new Command("Exit",Command.EXIT,1);
    scgIndex=new Command("select", Command.ITEM,1);
    form.append(txtField);
    form.append(sImage);
    form.addCommand(exit);
    form.setCommandListener(this);
         }// end of constructor
    public void startApp(){
         ItemStateListener listener = new ItemStateListener() //an anonymous class
         public void itemStateChanged(Item item)
                             if(item==sImage){
                                  sIndex=sImage.getSelectedIndex();
                                  switch(sIndex){
                                       case 0:System.out.println(sIndex);
                                       break;
                                       case 1:System.out.println(sIndex);
                                       try{
                             ImageItem logo= new ImageItem("",Image.createImage ("/misa.jpg"), ImageItem.LAYOUT_CENTER,"");
                                       form.append(logo);
                                       System.out.println("success");
    catch(IOException e)
    {System.out.println("error");}
    break;
    default: System.out.println("kiss my ass");
                                       }//end of switch
                                  }//end of if
                             //do something
         // register for events
    form.setItemStateListener(listener);
    display.setCurrent(form);
    public void pauseApp(){}
    public void destroyApp(boolean unconditional){}
    public void commandAction(Command c, Displayable s){
    if(c==exit){
              destroyApp(false);
              notifyDestroyed();
              }} // end of commandAction
    /*public void commandAction(Command c, Item item){
         }//emd of commandAction method*/
    after the "image "radio button is selected,the image will appear.if the user does not want the image, the user click the "no image " radiobutton .
    then the image(imageitem) will disappear. if it possible to achieve it ???
    thanks :)

  • I also have a .csv file with the name of a jpeg in one column and a text description of each jpeg in a second column. Is there a way to automatically insert one jpeg (photo) and its corresponding text, each pair on one page, into a Indesign document?

    I also have a .csv file with the name of a jpeg in one column and a text description of each jpeg in a second column. Is there a way to automatically insert one jpeg (photo) and its corresponding text, each pair on one page, into a Indesign document?

    I would also recommend to write the description into the meta data. This would allow to place a text frame above the image and it is possible to add meta information and file name automatically together with the image, when you place it or even in a prepared template.
    Meta data information can be written easily in Bridge in the Meta File Workspace.

  • Is there a way to export an image from Aperature into Adobe Raw before Photoshop?

    Is there any way to export an image out of Aperature into Adobe Camera Raw before using Photoshop?

    If you want to send a TIFF file via the 'Edit with External Editor' command after selecting Photoshop as your external editor, you can try the following:
    1 - Open Camera Raw preferences (either via Bridge or ACR).
    2 - Find the 'JPEG and TIFF Handling' section
    3 - Use the 'TIFF:' drop-down menu to select 'Automatically open all supported TIFFs' option
    4 - Click OK and restart Bridge or ACR
    This should automatically launch ACR when Aperture sends a TIFF to PS.
    Note - you would then need to use the 'Open Image' command from ACR to render to Photoshop and use the 'Save' command to go back to Aperture and see the changes. This is only for a TIFF file format though.

  • Is there a way to automatically add another of the same page while a form is being filled?

    Is there a way to automatically add another of the same page while a form is being filled?
    I have a two-page form of which the second page is essentially a spreadsheet analog.  Often, there is need for for more lines than are available on the page.  Is there a way in which to add another or even multiple copies of the second page? 
    Thanks ahead...
    TG

    You can do that with a dynamic XFA form created in LiveCycle Designer, which comes with Acrobat Pro for Windows. For more information, you can ask over at the LiveCycle Designer forum.

  • Is there a way to automatically insert the filename in the footer of a spreadsheet using iWork's numbers 3.2?

    Is there a way to automatically insert the filename of a spreadsheet into the footer when using iworks numbers 3.2?  iworks 09 had this feature and I can't find this feature in the new version of numbers.

    Hi rhyolite,
    In Numbers 3.x, The Print View and Layout View have gone (for now at least). Page Headers and Footers can only be reached under Menu > File > Print... to open Print Preview. Hover the cursor to reveal the Page Header and Footer fields.
    The only inserts that I can get to work in Print Preview are Page Number, Page Count and Date & Time. Filename is no longer in the Insert menu.
    Regards,
    Ian.

  • Is there a way to automate the CFX tags installation?

    Hello,
    I'm currently in the process of re-installing a web farm of ColdFusion 8 servers (W2K8, IIS 7.5).
    I have to install a number of CFX tags (C++) on each server to get the code running.
    Is there a way to automate the installation of the CFX tags (regedit imports, VBS, PowerShell...)?
    I found some link indicating that keys should be imported in the registry at: HKLM\Software\Allaire, but Allaire does not even exist in this branch (I believe that the instructions were true of older versions of CF).
    I installed one of the tags manually and noticed that the file neo-runtime.xml was updated with:
    <?xml version="1.0"?>
    <wddxPacket version="1.0">
      <header/>
      <data>
        <array length="18">
          <boolean value="true"/>
          <struct type="coldfusion.server.ConfigMap">
            <var name="session_variables">
              <boolean value="false"/>
            </var>
            <var name="application_variables">
              <boolean value="false"/>
            </var>
            <var name="server_variables">
              <boolean value="false"/>
            </var>
          </struct>
          <struct type="coldfusion.server.ConfigMap">
            <var name="cfx_http5">
              <struct type="coldfusion.server.ConfigMap">
                <var name="NAME">
                  <string>cfx_http5</string>
                </var>
                <var name="CACHE">
                  <string>true</string>
                </var>
                <var name="PROCEDURE">
                  <string>ProcessTagRequest</string>
                </var>
                <var name="DESCRIPTION">
                  <string/>
                </var>
                <var name="TYPE">
                  <string>cpp</string>
                </var>
                <var name="LIBRARY">
                  <string>D:\ColdFusion8\cfx\cfx_http5\cfxhttp5.dll</string>
                </var>
              </struct>
            </var>
          </struct>
    Can I simply add the XML node to get it running?
    Thanks in advance for any lead to the solution.

    This is great! but I'm not there yet. I figured how to assign little midi triggered melodies to a touch track. I used to do stuff like this on an old Buchla years ago. How do I get the automation on the midi track to control the filter on an audio track? I created regions with the automation I want on a midi track, then I assigned those regions to keys with touch tracks. How do I get that to control the filter on the audio track?
    thanks,
    Lee

  • Is there a way of moving imported images in lR4 from mac HDD to and EX HDD with out loosing LR4 data

    Hi
    i've managed to fill my mack up with images as i imported all my photos to the MAC HDD rather than an external HDD,,,school boy error :\   (but i am new to lightroom)
    as there's 30,000+ is there a way of moving them with out having to reload them to the new HDD?  i only found out my mistake when the computer was running on 1% memory...doh!
    Thanks for any advice
    Andy

    In your operating system, move the photos to wherever you want them to be (keeping the folder tree structure the same), and then in Lightroom re-link via http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm

  • Is there a way to not load images in safari? Like on android you can tick a box to load images or no to the internet?

    Is there a way to not load images in safari on ios 7 like in android there is
    The option to load or not load images?

    My reply here was specific for this thread, but as you noted, I didn´t read careful enough. I wrongfully took for granted that issues in the More Like This box was platform dependent. I tried to apolgize accordingly, I would like to see the post deleted, but that doesn´t stop you from policing obviously.
    And instead of arrogantly replying about matters irrelevant for this thread, maybe you should start reading more carefully yourself. The posts you are referring to are related to large images failing to load properly in Safari 7. This is not as you claim "vaguely related". Take this elsewhere if you have a problem with it.
    Again, sorry for messing up the thread.

  • Is there any way to create this image in photoshop?

    Is there any way to create this image in photoshop?  ,Any help would be appreciated?

    What JJMack said. An example I pulled in less than 5 minutes:
    All I did was inserted a text layer with that same inside color and a stroke layer style with that same outside color (about 3 or 4 pixels; outside position). Font used was Calibri Regular.

  • HT202299 Is there a way to automatically upload videos that last more than 5 minutes on icloud ?

    I saw that icloud has a limitation of 5 minutes on the videos :
    Is there a way to automatically upload videos that last more than 5 minutes from iphoto/photos ?
    I'm trying to find a way to store my photo library on the cloud, AND keep to acces to each photos/videos from the net (not just storing the .iphotolibrary on the icloud folder) but i cant do it for the videos of more than 5min ...

    I believe you are probably referring to iCloud photo sharing. If you wait a while, the next version of Yosemite will include the new Photos application which will sync video through the iCloud photo library feature.

  • Is there a way to automatically detect and delete duplicate photos in a library

    I just imported a load of photos into my main iPhoto '11 Library from several older MAC's Photo Libraries. Despite repeatedly using the "Don't Import Duplicate Photos" dialogue box, I have many duplicate photos. Is there a way to automatically detect and delete Duplicate Photos?
    I also have iPhoto Library Manager installed on my MAC, but cannot seem to locate on it anything that would do this.
    I have over 4,000 photos, so would really appreciate some help here! Thanks in advance...

    duplicate annihilator - http://www.brattoo.com/propaganda/
    And NEVER import an iPhoto library into another iPhoto library - doing so des not work and creates massive duplication
    if you still have all of the original iPhoto libraries I recommend you drag the bad one you created to the desktop (delete it later when everythin has successfully been completed) and start over usin iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ -  to merge the libraries
    LN

Maybe you are looking for