Importing custom images in Spaces

How can a custom image (png, jpeg) be included in the custom Resource Catalog of a Space, so that moderators of the space can add custom images to the page(s) ?

If you want only the basic features of UCM to use in WebCenter Spaces (like check in, search, browse folders) than the installation process is quiet simple. Just install UCM in the same middleware directory as webcenter and extend the domain with UCM. You also will have to create a connection to UCM in the enterprise manager and configure it as the active connection.
if you want some more features like check in profiles and advanced site studio features, you also have to configure the oracle HTTP server which is described in following post: http://www.yonaweb.be/enable_ucm_check_in_profiles_webcenter_ps3_0
This post also shows you how to create the connection in the EM.

Similar Messages

  • Custom image format

    Could anybody please point me in the right direction to write a plug-in to import custom image formats?
    Thanks

    The LR plugin SDK doesn't have the capability for directly importing formats other than those natively implemented by LR (JPEG, raw, TIFF, PNG, video).  The Any File plugin lets you "import" files of arbitrary type into your catalog and manage them, but you can't edit the files directly in LR.
    If you have more specific questions about writing plugins, please post them in the LR SDK forum.

  • MDT 2010 Windows 7 custom image import problelm

    I am unable to import a Windows 7 OS from a wim image file any more. I get "Path 'C:\Distribution\Operating Systems\Old OS Folder' does not exist" when I try to import. I believe the folder it is looking for was one where I had imported a custom image with setup files. I have since added Windows 7 operating systems from the DVD for source files and had deleted the image operating system it is looking for. I can still import a Windows XP custom image just fine.
    It is creating the folder and copying the wim, but it does not show up in the Deployment Workbench under operating systems. Any ideas? I assume the problem is coming from having imported the wim with setup files previously.

    Hi,
    just came across similar problem.
    Custom .wim image not visible after importing to MDT.
    imagex /info returns long wim description for another custom wim but much shorter for this one.
    I tried to change wim name and description property - but nothing worked for me.
    So I applied the original image to folder and then recaptured it with imagex I am using (newest WAIK).
    Now the imagex /info is ok.
    Btw you cannot notice the difference with
    dism /Get-WimInfo
    It is now visible in MDT.
    Can you please explain what you did. 
    i am using image capture cd generated using SCCM to capture the wim file.
    1 image i imported successfully. Every image since then after import it does not show up in deployment workbench. i have no idea what to do.

  • Reduce size of custom images in Address Book

    I love Address Book's wonderful integration with Mail.app, my iPod and even my phone. So, one day I decided to set custom images for almost all of my contacts - copying and pasting images into the fields.
    However, afterwards, I realised that my 275 contact address book has ballooned from 2MB to 49.9MB thanks to the pictures. If I export the contacts into a Group vCards, it is an astounding 121.8 MB.
    I feel that Apple should've limited the size of the pictures (automatically resize it just as iPhoto does for email and iWeb does for the web). However, this isn't the case.
    Thus, my question is:
    Is there a script or anything to reduce the size of those custom images? I am not looking forward to deleting the pictures and resizing them before importing them into Address Book. If there is an automated way of resizing the pictures, please let me know!
    Thank you very much!

    Hi mintchocicecream,
    Have a look at this:
    http://discussions.apple.com/message.jspa?messageID=2271577#2271577
    May be of no help, but sounds like you have larger that necessary files.
    I do mot know of any script, short of a photoshop group resize that would work. Certainly nothing in Address Book.
    Good Luck
    John

  • Lightroom 4 suddenly stopped importing most images

    Hi All,
    I am using an up-to-date version of Lightroom 4.2 on Mac OSX v10.7.5 with 16 GB DDR3 RAM, a 2.93 GHz processor, and about 250 GB free space on my hard drive. I shoot RAW files with a Canon, and always set my import to convert to DNG.
    I have been using LR since version 1, and I've never had trouble importing. Two days ago, however, Lightroom stopped importing my images. As I often do with big shoots, I began the import process before heading to bed; when I checked the status in the morning, the screen still read "Importing files..." with no images actually imported. I tried it again immediately, same result. I shut everything down, rebooted the machine, and tried again... same thing.
    My process in detail: Connect my camera to my iMac via USB... open import dialogue... check images to import... hit "import." I then get the "Importing files..." message in the middle of the screen, plus the "Convert to Digital Negative and Import" message in the upper left, with the progress bar showing 1/3 filled. Nothing changes from this point, even after 60 minutes. So I click the "X" box in the upper left to end the import. After that, the "Import.." button in the lower left is grayed out, and I cannot try to initiate another import. Hmmm. So I close Lightroom and try again. That's the cycle I'm experiencing.
    After repeatedly trying to import about 400-500 images here, I decided to just try a few. I made a few attempts, and eventually I was able to bring 4-5 images in. That gave me hope, but the next time I tried, no luck. So I began trying all sorts of combinations... rebooting LR, turning off the camera, then restarting everything again. Out of maybe 25 attempts, I was able to pull images in 4 times. Strange and seemingly random.
    Any advice for out there? Should I try reinstalling Lightroom? Would appreciate any tips or solutions.
    Thanks,
    Nick

    Is this a camera that has worked previously, or a new model?
    Also - how are you importing? Via USB cable from the camera or using a card reader?

  • InDesign CS3 Scripting XML Import Multiple Images into same Text Frame

    I am having trouble importing multiple images into the same Text Frame using XML import. I imported 5 images into the text frame. However, all 5 images are laying on top of one another. Does anyone know if there is a way to have all images laying out like how Microsoft Word handles inline images, i.e., laying out next image to the right of previsous image in the same line and if there is not enough space left in the line, then wrap to next line. Thanks in advance. I understand I could use JavaScript to do post import processing, e.g, calculate the image size and place each images accordingly. But I am trying to see whether there is a way to do this without scripts.

    You can apply an object style to all anchored images by script. A text frame containing main flow should be selected.
    var doc = app.activeDocument;
    var textFrame =  app.selection[0];
    var rectangles = textFrame.texts[0].rectangles;
    if (rectangles.length > 0) {
         for (var i=0; i < rectangles.length; i++) {
              rectangles[i].appliedObjectStyle = doc.objectStyles.item("Cover");
    However, there is a better approach:
    Step 1
    Create place holders for a single "Book" element and format it as needed -- apply an object style to the cover.
    Step 2
    Import the xml file -- the placeholders are replaced with data from the 1st xml element
    Step 3
    Drag & drop the element containing all "Books" elements into the main flow -- all elements are placed and formatted the same way as in step 1.
    Finally, add a new page, click the overset text icon and autoflow text to add pages so that to fit all the text.
    Hope this helps.
    Kasyan

  • Imported JPEG images are too light

    Imported JPEG images appear lighter/brighter than the scanned image.
    How can I make JPEG images appear with the correct lightness/brightness so they look like the actual book or magazine from which they were scanned?
    Using Apple's "Preview" to look at a JPEG- everything looks fine. But when a JPEG is imported into Motion 4.0.3 (and/or Final Cut Pro 7.0.3), the image appears lighter/brighter, as if it's washed out. To see if this is just the way a JPEG appears in Motion and not how the finished product will be, I exported a Motion project with one or more JPEGs as a QuickTime movie. The QuickTime movie does not bring the JPEG image(s) back to the "correct" lightness/brightness as the scanned image.
    Settings used:
    JPEG image, using a CanoScan LiDE 210 scanner, Color Space: RGB, Color Profile: sRGB IEC61966-2.1, current Monitor Gamma setting on the scanner is set to 1.80
    How can I make JPEG images appear in Motion (and Final Cut Pro) so they are true to the source from which they were scanned?

    Does it do the same thing when you use TIFFs?
    Patrick

  • 'Do not import duplicate images' does not work

    For some weird and frustrating reason, the 'Do not import duplicates' checkmark doesnt seem to be functioning. Over the past few weeks, I have ended up importing duplicate and triplicate copies of images even though the checkmark on 'Do not import duplicate images' is checked. I dont know why this is happening.
    My import settings are customized, but then this was done long before i started facing this problem.
    I usually dont delete images till my card is full, and this results in duplicates before everytime I import images from a new shoot, images from the previous shoot also get imported, unless I manually deselect them.
    Any help on this would be appreciated.

    Leonie,
    Yes I rename my files while importing. But I have been doing that for a while now, didnt face this issue earlier. Not sure what you mean by 'Signature'?.
    I upgraded to ML a few days ago, so my sys config is MacOS 10.8 & Aperture is 3.3.2 (I've been facing this issue even before i upgraded to ML, so I dont think its related to ML).
    I always import directly from my camera (i.e. card) and this issue seems to have cropped up somewhere after the release of Aperture 3.3.
    Also, I have sent f/b to Apple on this issue (n vow, they seem to be collecting customer profile data thru this f/b. Look at the number of irrelevant questions they have).
    cheers, Bhaven

  • Extremely slow display of imported PDF images

    We have been using imported PDF images in FrameMaker for many years now with great success. However, something happened a few weeks ago that now causes several of our machines to take an extremely long time to display PDF images. For example, a 200KB imported PDF image that previously took less than 1 second to render now takes 14 seconds. It is now almost impossible to work with many of our documents, which contains 100+ images.
    This has happened on several of our PCs running FrameMaker 8 (via the TechComm suite). These machines have the following software configuration.
    FrameMaker 8.0p277
    Adobe Acrobat 8.1.3
    Windows XP Professional SP3
    We have also disabled all plugins, but there is no difference - the problem still persists.
    However, there is one machine in our office that is not affected. It has the following configuration.
    FrameMaker 8.0p277
    Adobe Acrobat 7.1.0
    Windows XP Professional SP3
    Is it possible that Acrobat is affecting the PDF import? Or is it recent changes to XP? Or something that has been updated in the background?
    Any assistance is greatly appreciated.
    Steven Teasdale
    GE Multilin

    In practical terms, you can always toggle the display of graphics off in FM, but that doesn't work for all situations.
    A few things to check:
    Did you optimize the PDFs when they were created? (You'd still want to avoid downsampling and compression, but optimization still reduces the size.)
    Also, a lot of the graphics processing is memory-intensive, so you should be using machines that are loaded up with RAM and have healthy open space.
    Finally, if it happens consistently, the machines' anti-virus programs may be screening everything every time each file is opened. So adjust those settings... That's easy to test for too -- just shut it off and try an import.
    How heavily are the servers being hit by other applications and users, and how fast is the network? Not being able to serve the files quickly enough is another chokepoint.
    Move a book with Bruce Foster's Archive plugin to create a local copy and test with that to see if the problem is actually FM and the local machine, or something outside.....
    It may also be worth checking to see if the computers have the lastest graphics card drivers loaded too.
    Art

  • Sap/bw/Mime/Customer/Images Path in SAP BW Server

    Hi,
    while developing the Web Reports, Our consultants has used some logos in the templates in the development server. These logos are appearing in development properly. I have transported these templates to the quality where these icons are not displaying.
    Post that I found these icons are picked up from from the location  '/sap/bw/Mime/Customer/Images/headjetlogo.gif'. I am trying to copy these files from development to quality. But I am unable to find this path on development server.
    Can anyone please help  me on how do I find these files.
    Thanks
    Ramesh Ganji

    hi Ramesh,
    when we attach the file to dev, system will ask for 'local object' or specify package and save to request to be transported.
    since it's not 'insert' by you, try right click in SE80 and check if there is 'object directory entry', change the package and it will prompt request or right click the file and find menu 'export' or 'download', it will then save to you local pc (specify a folder).
    after that go to production, se80, right click the folder and 'import mime objects' from the file downloaded.
    hope this helps.

  • Iphoto photo import - best image type for max resolution (jpg vs tiff)

    What is the recommended image type for maximum resolution of photos brought into iphoto albums, since I will be enlarging them? (ie assuming everything brought into iphoto is set/reduced to a standard resolution, then jpg might allow more digital data for later enlargement; on the other hand tiff is often recommended for best resolution though it requires more space). Thanks, - D

    Thanks, Terence - OK, lets assume I shoot a 5-meg photo of a painting and adjust the paralax etc in photoshop so it is perfectly set inside the rectangular format. Now I want to import it into iphoto, knowing that I will use the crop tool to make two blow-up enlargements to go along with the original full-size image... total 3 related images of the artwork. As you mentioned these will eventually go into iweb as part of a series inside an album, with a hyperlink connecting the two enlargements to the full-size image... so viewers can tap to see finer detail and then go back to the overall composition. My question is, for the original photo image of the painting should I drag a 10-meg tiff into iphoto or a 2-meg jpg? (I do not know what importing the image into iphoto does to the original in terms of final image resolution and data size... Will a 2-meg jpg provide sufficient data to work with and enlarge via the cropping, or would the 10-meg tiff be better as a starting point? Or, if everything gets translated into a certain pre-ordained size anyway, would the tiff get watered down to, say, a 2-meg-size image anyway?) Thanks, - D

  • Unable to import certain image files in CS5

    I currently am using CS5, and I am unable to import certain image files such as .png and.tga. When I try to import them I get an error message saying something along the lines of file type not supported. Any help?

    Make sure that the images are not CMYK color space.
    Already tried that, thanks
    One thing to take note of is everytime I start AE I get a pop up box saying "You have at least one output module template that refers to a missing plug-in. Please check your Output Module Template". That plug-in would be the TIIFF alpha sequence output. Perhaps  that has something to do with it..

  • Import Image Sequence not importing all images

    I have a sequence of 99 JPG images that I am trying to import into Premiere Pro. These images were created by an export from Lightroom.
    When I perform the import starting at the first image, only 35 images are imported.
    If I import the sequence starting at the 34th image, only 2 images are imported.
    If I import the sequence starting at the 35th image, only 1 image is imported (and it is imported as an image file it appears).
    If I import the sequence starting at the 36th image, the remaining images are imported.
    I have tried a number of different settings for the export from lightroom, but it doesn't seem to make a difference. For example, if I export as TIFF I see the exact same problem. If I export as JPG using a smaller image size I see the exact same problem.
    I have tried "Replace Footage..." to no effect.
    When I inspect the image files using an image view there appear to be no issues with the files. File sizes are consistent and not inordinantly large (~5MB).
    The filenames are all properly numbered as expected by Premiere Pro.
    I have done this successfully dozens of times before this problem arose, and I have done it successfully a number of times since the problem arose. The problem appears to happen only with this particular set of images.
    I can work around the problem by importing the images as two separate imports (one starting at the first image and a second starting at the 36th image) and putting them both in a single sequence. In fact, this spliced sequence looks as expected with no missing frames or anything else untoward that I can see.
    I've poked around with this for a couple days, and cannot discern any other factors that may be causing this.
    Does anybody have any idea what might be going on?

    I checked the filenames again and they're properly sequenced with no extra or missing spaces or anything else that doesn't follow the pattern of the first 34 images. In fact, I took a screenshot of this, and in doing so I figured out what the problem is.
    Here's a screenshot of the directory with all the images.
    As I was reviewing this screenshot, I noticed that the "Date" column goes over midnight. Images 0001-0034 all took place before midnight, and images 0035-0099 took place after midnight.
    This column shows the capture time of the images, coming from the camera and through the export from Lightroom. This is different from the creation date of the exported file, which is shown in the "Date modified" column (cropped out of screenshot). In other words, you can see that I took the pictures on February 25 and 26, but exported them on March 1.
    To verify that this might be the problem I used "Edit Capture Time..." in Lightroom to shift all the images an hour earlier. This means that there is no longer a date change in the sequence as they all have capture times before midnight. I then exported the images from Lightroom again, and imported them into Premiere Pro.
    When I do this, all the images are imported into Lightroom successfully.
    I realize this is only one data point, but it sounds like Premiere Pro is maybe using the capture time as part of its sequencing heuristics, and for some reason it isn't handling a date change properly. Or maybe something else is afoot.
    What do you think?
    Message was edited by: reastick trying to fix link to screenshot...
    Message was edited by: reastick ...well that didn't work either...

  • When importing my images some of them are missing how do i retrieve them

    when importing my images some of them are missing . how do i retreive them ?

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.

  • Import - No image previews after 3.1.3 Update

    Hello all,
    Since the 3.1.3 update I am unable to import my images as usual.  In a netshell, when importing from my HDD, the import dialogue will not register any images to select to import. Be this NEF or JPG or TIFF or PSD. After selecting the arrow to the correct folder, it's blank.  All other options are togglable.
    What I've tried:
    1. Repair Aperture Permissions (using Ap3 startup menu)
    2. Restart machine
    3. Repair disk permissions
    4. delete Aperture plist - restart
    No change.
    On way that works is:  File - Import - Import folder as Project.  But this way I cannot instantly add meta, change the timezones, etc...
    Using:  iMac 27" late 2010 i7 Quad, 8gb RAM
    I used the system the same day as the update with 3.1.2 and it was working perferctly.  Haven't updated the Macbook Pro yet, thankfully.
    My normal process is: (and works well for my multiple location and system setup for sport / travel photography)
    1. Copy NEF files to HDD (folder)
    2. Import to pre-created Project with present Meta
    3. Setup Smart Album
    4. Rate
    5. Quick edit
    6. Export
    7. Deliver
    8. Run to shoot next game on the pitch
    I've been using Aperture since v2 first came out, as a sports photographer workflow speed is extreme important, Aperture ticks the good boxes.  But at the moment I cannot import in this workflow so it's severly slowing down the process.
    Any help is much appreciated, but resinstalling is not a great idea for me as my library is absolutley massive.
    Thanks
    Daniel

    Not sure who GNSMITH is but is not myself as the original poster.  Maybe he's got crossed posts?
    Anyways on the new Library idea. 
    Simply put, yes the new Library seemed to work fine with importing.
    But it snagged again sadly.
    1. Opened AP. Tried import to existing library. No go.
    2. New TEST library. Import was working
    3. Closed and reopened AP. Both libraries seemed to work.
    4. Closed and opened AP again. Neither worked. 
    Only change I did was to make the icon toolbar read to "text only" as I need the library tree space.
    5. Deleted PLIST.
    6. Opened AP. Both libraries worked fine on import.   Did not change anything at all.
    7. Repeated 3 times.  All worked.
    8. Then changed the toolbar to "text only".  Removed face detection from Preferences as the only changes.
    9. Closed and reopened.   Seems to be OK for now.
    Not really sure what's going on but right this second the Import works ok.
    Thanks for the replies, much appreciated.

Maybe you are looking for