Image blur/morie

Images in my doc are all fine no pixelation or blurring at all then for no apparent reason after working on the doc some more and exporting/saving in different formats I go back to the original and the images seem to become pixelated/blurred?!? All images have been scaled and sharpened previous to importing and are fine for a while then suddenly they become unclear any ideas?

I guess I must have, didn't realise that the document still pulled info from the original images so I often delete the folders with the resized images in (this is probably why I have had the problem before)
So I will have to go back resize all images and make sure they are kept safe in a folder until I have completely finished with the documents and the brief is done.
Sorry if this is all quite naive of me,  I have never been taught how to use indesign I have learnt the majority myself, being the only creative for a small company it is hard for me to learn new things without someone else who has the experience to bounce off. I really appreciate all you guys on the Adobe communities as its the only way I can learn and progress with these programs.

Similar Messages

  • Still images blurred

    Why are all my still images blurred?
    I am new to video editing.
    I set up CS3PP to default Pal and placed the images on the time line and set to 'scale to frame" size.
    I can see that the images have lost their quality in the Program Monitor screen but the images are clear in the Source Monitor screen
    I viewed the images in Windows Media Player and they're blurred.
    I made a test CD and the images are blurred on the TV "standard pal TV".

    If your source images have a significantly greater frame size than your PAL project, then considerable loss of quality is inevitable when you convert to video. Interlacing further reduces the vertical resolution for DVD video.
    That's the price you pay for using video to show stills. Maybe you should consider an alternative way to publish your stills if you want to retain quality. For example, a program like Irfan View (or one of the many others) that offer a slide show of full-resolution images on a computer screen.

  • To print an Pie Chart image with more than 1 slice is not working

    Hi friends,
    I'm using a version 12.0.4 and when I try to generate an Pie Chart image with more than 1 slice using the function saveImage() it's not working. The image is only generate when its return is just 1 value (1 peace of pie).
    Anybody help me?
    Regards!

    It's not unique for your setup, but it also happens in 12.0.11, so it's a bug.  Looks like it is throwing a null pointer for some bizzare reason when generating the GIF output by the ImageStorageServlet (per the NW logs). 
    Your best bet would be to log a ticket so it can be patched.
    12.1.7 seems to work fine.
    Edited by: Michael Appleby on Nov 23, 2010 2:39 PM

  • Image blur algorithm

    i am facing an error while compilation of this program.It is a Image blur problem.
    Description about this problem is as follows:-
    In the Blur Image problem, you are given an image and you have to compute an image blurred as per the given parameters. If radius is r then for a pixel at the data[x][y] in the output image, you would have to take an average of all pixels surrounding data[x][y] in radius r in the source image. For example if the radius 1, then data[3][3] in the output image would be average of following 9 points in the source image ( data [2][2], data [2][3], data [2][4] , data [3][2], data [3][3], data [3][4], data[4][2], data [4][3], data [4][4] ). Similarly, for radius 2, you would taking average of up to 25 points for each pixel (and for radius 3, average of up to 49 points).
    Note that averaging would be done individually for each R, G and B component i.e. each of R and G and B components should be separately averaged for calculating the result pixel color
    Constraints
    •     Each data point in the image is in RGB Format (integer value up to 0xFFFFFF), if not return null.
    •     Radius r has to be less than both rows or column in the source image, otherwise return null.
    example:-
    input is the object of image class
    [ 6, 12, 18 ]
    [ 5, 11, 17 ]
    input.data = [ 4, 10, 16 ]
    [ 3,  9,  15 ]
    [ 2,  8,  14 ]
    input.rows = 5;
    input.columns = 3;
    call to blur_image(input, 2) function should return output image class with
    [ 11, 11, 11 ]
    [ 10, 10, 10 ]
    output.data = [ 10, 10, 10 ]
    [ 9,    9,   9  ]
    [ 9,    9,   9  ]
    output.rows = 5;
    output.columns = 3;
    Code:-
    public class BlurImage {
         public class image {
         public int[][] data;
         public int rows;
         public int columns;
    public image blur_image(image i, int radius) {
              //Write your code here
              if(i.rows<radius && i.columns<radius)
                   return null;
              image i1 = new image();
              i1.rows=i.rows;
              i2.columns=i.coulmns;
              for (int k = 0; k < i.rows; k++)
              for (int j = 0; j < i.columns; j++)
                        if(i.data[k][j]>0xFFFFFF)
                             return null;
                        i1.data[k][j]=function1(i,k,j,radius);
              int function1(image i,int k,int j,int rad)
                   int sum=0,count=0;
                   for(int x=k-rad;x<k+rad;x++)
                        if(x<0 && x>i.rows)
                             continue;
                        for(int y=j-rad;y<j+rad;y++)
                             if(y<0 && y>i.columns)
                                  continue;
                             sum=sum+i.data[x][y];
                             count++;
                   int r=sum/count;
                   return r;
              return i1;
         // You could use this sample code to test your functions
    // Following main fucntion contains 3 representative test cases
    public static void main(String[] args) {
    //TestCase 1
    try {
    image i = new image();
    i.rows = 5;
    i.columns = 3;
    i.data = new int[][]{{6, 12, 18}, {5, 11, 17}, {4, 10, 16}, {3, 9, 15}, {2, 8, 14}};
    BlurImage obj = new BlurImage();
    image res = obj.blur_image(i, 2);
    System.out.println("TestCase 1");
    if (res != null) {
    for (int k = 0; k < i.rows; k++) {
    System.out.println();
    for (int j = 0; j < i.columns; j++) {
    System.out.print(res.data[k][j] + ",");
    } else
    System.out.println("NULL");
    catch (Exception e) {
    e.printStackTrace();
    After compilation it is giving following error:-
    BlurImage.java:27: ';' expected
              int function1(image i,int k,int j,int rad)
    ^
    1 error
    please any one help........

    There are several syntax errors in this code.
    1. Your method called function1 has been declared accidentally inside the blur_image method.
    // place these two lines before the line where function1 starts.
    // (you can find it just above the comments of method main())
    return i1;
    }2. There are two possible typing errors in line:
    i2.columns=i.coulmns;
    // you might want to use i1 instead of i2, and i.columns is misspelled3. You are trying to instantiate a member class within a static context (method main()). This needs to be resolved (you might want to declare your image class static, but not sure this is what you want).

  • Convert and save video, audio, and images to more than a hundred standard f

    I bought Quicktime pro because it said it could "Convert and save video, audio, and images to more than a hundred standard formats". I have .mov that i took and want to change to an .avi
    I feel stupid but how do i do it? shouldn't there be a "convert" or "save as" button?

    AVI isn't dead, it remains the ONLY format in which any real editing can be performed (ie filters and colors and zooms etc). That said, converting FROM any compressed format like .mov back to an uncompressed format will not restore the information lost in the original compression conversion. Like the man said, you probably won't like the result. If you want to make an AVI to edit artistically, you'll need to go back to the source and re-record it to make an original uncompressed avi (example I use 'DVD to AVI converter' software to recode my homemade DVDs to a huge uncompressed AVI, then play with cutting and cropping and zooming and special effects and color filters, etc in a program such as VirtualDub, an THEN open in QT Pro to convert to MOVs to share).

  • Managing images with more than 72ppp

    Hello, my question is about image managing. I've to print some images with more resolution than 72ppp, and I don't know how to make it possible. Whatever the resolution of the image I handle is, I obtain the same result in my printer (only 72 ppp).
    Thanks.

    Take alook at the setPrinterResolution and setPrintQuality:
    int pRes = op.getWidth()/8;
    java.awt.PageAttributes pa = new java.awt.PageAttributes();
    pa.setPrintQuality(java.awt.PageAttributes.PrintQualityType.NORMAL);
    if(pRes<300) pa.setPrinterResolution(200);
    else pa.setPrinterResolution(300);

  • Accessing image in more than one method

    Hi,
    I am trying to create an image manipulation system. For the purposes of the example I am trying to load an image into the system, and then within one method, call another to manipulate the image.
    I am having problems with the accessing of the image. Here is the code:
    public class imageRead3 {
    public static Image blur(String begin) {
        String end = "blur_pred_1280.jpg";                                        
        ImageDecoder input = ImageFile.createImageDecoder(begin);
        ImageEncoder output = ImageFile.createImageEncoder(end);
        float sigma = 1.0f;
        BufferedImage inputImage = input.decodeAsBufferedImage();
        Kernel kernel = new GaussianKernel(sigma);
        System.out.println("Convolving with a " + kernel.getWidth() +
             "x" + kernel.getHeight() + " kernel...");
        ConvolveOp blurOp = new ConvolveOp(kernel);
        IntervalTimer timer = new IntervalTimer();
        timer.start();
        BufferedImage outputImage = blurOp.filter(inputImage, null);
        System.out.println("Gaussian blur finished [" +
          timer.stop() + " sec]");
        output.encode(outputImage);
        return outputImage;
      public static Vector doSomething() throws IOException {
         String begin = "pred_1280.jpg";
         Image image = blur(begin);  //This is where I am having problems.  I want to use this method to run a gaussian blur over the image.  I then want to use that blurred image within this method.
         int w = image.getWidth(), h = image.getHeight();
         ....do something with blurred image
      public static void main(String[] args){     
        try {
          doSomething();
        catch ( Exception e ) {
         return;
      }Now the blur method saves the blurred image file to disk. I want to be able to access it without saving it to disk first. Is there any way I can do this?
    With thanks
    N.

    Well you got two potions
    1 - pas it as an argument
    2 - put it in member variable of the class.
    but the best to do will be define a good class to represent your image and then write method on that class to manipulate it.
    You can use the constructor to create an object of it and load the image and the call other methods to manipulate the image

  • Images Blurred in Photo Viewer

    I recently had to reflash my HP Touchpad ROM using webOS Doctor because the images in Photo Viewer became blurred after a file transfer. Once I completed webOS Doctor and set up my Touchpad again, the image resolution was restored. 
    I went to transfer more image files on to the Touchpad from my PC again, and after Ejecting the Touchpad properly from USB Mode, the images are blurred again. I have had to use webOS Doctor 4-5 times now for the same issue, is there any other solution that can be applied to avoid the headache of having to use webOS Doctor every few weeks when I decide to upload more images to the Touchpad? 
    I considered connecting to the PC and removing the USB without Ejecting properly in order to force the system to re-index the existing files? 
    Can the Touchpad only upload a certain amount of data at a time? It seems that this error occurs whenever I add more than 4GB of data at a time, so what is the point of having 32GB of storage if the files become unviewable? 
    Any suggestions or solutions would be greatly appreciated!
    Post relates to: HP TouchPad (WiFi)

    Could this be added to Release 1.4?
    Video editing alone? No image editing?

  • Please help - I can not create large arrays of images (no more than 108 elements)

    Hello,
    I am working in an application where i acquire 300 high resolution images (3Mp) and then i process each of those frames.
    When i try to put alll those frames in one array of images, the system does not let me more than 108 elements. There is no such message like out of memory or memory error. It is just that when i visualize the array of images, there are good frames the first 108 elements, and then white frames the rest of the elements.
    Ideallically i would prefer to process frames as i am acquiring them, but i am concerned about the remaining processing time for the rest of the tasks.
    Then, as an alternative, I have tried to store frames in two shorter arrays, and i ended up observing that when the first array (say 50 elements) is full and the second array starts (another 50 elements for example), labview needs a certain time in the the middle (like three seconds between closing first array and starting acquiring on the second array). If i dont wait that time between arrays, both arrays contain the same information. I know, this is weird, and i know about the fact of passing information by reference on imaq images. 
    The most interesting thing is that when i reduce considerably the resolution of the image (say that now, instead 3Mp they are 2Mp), the maximum number of elements on the arrays are exactly the same: 108, so this makes me wonder if it is a memory constrain. And the code is fairly simple, there is no way that i am cutting the acquisition at the number 108.
    So my question is, How can i put 300 frames in one just one array? or How can eliminate the time i have to wait between arrays?
    I have heard about memory allocation and so, but i am not sure how to proceed. I have windows 7.
    Thanks in advance,
    Roberto

    It's hard to visualize.  Please post the code - or at least a shell representing your code - so we can see what is happening.  Are you sure you are getting 108 contiguous pictures, or are some aquisitions being skipped?  Is the first picture in the array the first aqcuisition?  Is the last picture the last acquisition?
    I really don't think it is about memory allocation.  I think it could be about your method of acquiring and processing said acquisitions.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • How do I get rid of type/images blurring as I scroll?

    Re: CS2
    How do I get rid of the blur of type/images as I scroll down my document? It's annoying and I can't figure out how to turn it off.
    Thanks.
    Sorry for overly basic question.

    That worked.
    Thanks Monika. I appreciate the help.

  • Why does FF4 start to download an image once more which is already on screen when trying to save this image?

    I look at a picture from a photo-site - size 11 MB. I decide to save this picture > right click > save image as.. The download window opens and FF downloads the picture once more which is already somewhere in FF's cache or memory.. I can see that data comes from the internet and not from a local place on my computer and the process can be rather slow, when the remote server is slow.. I find this as a waste of bandwidth.. Is it possible to avoid this behaviour?

    You can look at this extension:
    *Save Images: https://addons.mozilla.org/firefox/addon/3404

  • Indesign CS5 - png images blur in interactive PDF

    I use CS5 to create client documents and beginning to learn how to make PDF documents interactive.  We use .png files which export to PDF (print) with no problem either on screen or when printed, but when the same file is exported to PDF (interactive) the images are blurred both on the screen and when printed.  The png files are created in Photoshop. Does anyone know how I can solve this problem and have sharp images in interactive PDFs???  I'm hoping its something basic and easy!

    Hi Eugene
    Many thanks for your suggestion.  I've tried it and it works and glad it was something simple
    Cheers
    Elspey

  • Still images blur on playback

    hello all:
    I am using Final Cut HD and I am having problems with jpgs and PSD files blurring on playback. they look fine as still... but when I press the space bar to playback they blur horribly.
    I didn't used to have this problem.
    A recent change to my set up is that I replaced my old, big Viewsonic computer monitor with a new Mac Cinema HD display.
    Do I have to alter any of the settings?
    As usual a deadline looms.
    So any advice or offers of drinks would be welcome.
    Thanks
    Adrian S

    I am not using an external monitor... as the images will playback as a desktop presentation. So if they are bluring now... won't they also blur in the final presntation when to DVD ()It will be distributed as an educational project).
    As I mentioned this is a new problem... i didn't used to see such a degradation of image on the computer monitor.

  • DAM Images taking more then usual time to load

    Hi All,
    I have a problem in reducing image load time. I am using CQ5.4 and more than 60% of page load time consumed by images ( eg.20KB png image from DAM taking 2 sec to load).

    When you say load, in what environment are you requesting the asset?
    I have (weighted numbers) something like this for a 250 kb jpeg:
    Author: 100 ms
    Publish: 75 ms
    Dispatcher: 60 ms
    CDN: 25 ms
    That is on a single image request on one page. Requesting multiple images on one page adds quite a lot of wait-time for getting requests through, since only 3 concurrent requests are allowed to our environments at one time.

  • SVG Image blurred

    Hi,
           I am using an SVG image to be displayed on a pdf file.But the quality of image on pdf is not very clear.I had took printout of SVG object and pdf file and checked for the difference.SVG object printout is crystal clear and pdf printout is dotted and blurred.Is there anyway i can improve the quality of the image so generated on PDF?
    regards,
    Ravi Kumar.

    Hi Rick,Sacha
          Actually my SVG image doesn't possess any embedded images.It just consists of a text and a barcode which is to be displayed on a pdf file.I am observing the quality of the pdf to be very low after rendering.It's showing in the form of close dots.But the size of dots are huge enough to be noticed.(Pdf printout is not getting printed properly).  
          I had tried converting into .png and .jpeg format and observed the images.It's showing up in the same way.It may be due to sharp changes in contrast as Sacha mentioned.Is there any way in which i can improve the quality of image.I don't mine if i get the output in other format but it should be in a good printable format?
    Regards,
    Ravi Kumar.

Maybe you are looking for

  • Does the ipod nano come with Apple Earphones with Remote and Mic

    does the ipod nano come with Apple Earphones with Remote and Mic

  • HTTP error: 401 Unauthorized while uploading photo in hr master data

    Hi All, Transaction code OAAD while uploading a photo  iam faceing a problem i am getting error massage *HTTP error: 401 Unauthorized" i have done modifications in the transaction codes OANR ,OAC2,TABLE: V_T5850,OAC0,OAOH,OAAD, IN OAAD Transaction co

  • How to pass a value to a component

    In the following file I want to click on a button and send a value to a component. I want that value to change for different buttons but I cannot use the instance name to send that information and I also cannot use a method of tIe class. I tried inst

  • Onchange events when transforming select lists for EXTJS integration

    Hi, We have the folloiwng code that transforms select lists to extjs combo boxes   var selectfield = Ext.query('select[class!="shuttle"][class!="multiselect"]');   for (var r = 0; r < selectfield.length; r++) {     //If there is an onchange event the

  • Folder Creation is Messy

    Hi there, When I create a folder anywhere in Finder, why does it not align with the grid automatically and instead overlap other folders? This is incredibly annoying, is there anyway to change it? Many thanks.