Uploading images - resolution problems

Hi all,
We have been trying to upload images - signatures into ECC from SE78 - the length and width of the image is changed - 82 mm becomes 97 mm on upload.
I believe this is due to some system setting / config around image resolution.
can anyone give me some valuable inputs on the same.
- Surya.

Hi
After uploading the image,edit the technical attributes - increase the resolution and check the box - reserve height automatically.
Thanks
Vijay
PLZ reward points if helpful

Similar Messages

  • Aperture Image Resolution Problem

    I know there have been a lot of posts about image resolution, but I haven't found an answer to my problem.
    I use a DLSR and and shoot in RAW and/or maximum resolution JPG. When imported to Aperture, the file size is usually in the 10-15MP range. However, when I try to email photos in their "actual size" or export photos to BookSmart (blurb) to create a photo album, the photos become compressed (to about 1MP). According to blurb support, my 10MP images are only 96 dpi, and not enough for a high resolution image.
    I have my image export presets set to highest quality, original size, and 300 dpi, so I don't know what the problem is. Can anyone help me?

    Agree.
    OP:
    A quick review, just so we are on the same page.
    Digital image files have two "sizes". 
    The actual image size is measured in pixels.  The digital image comprises a grid of colored dots.  Each dot is a pixel, which is short for picture ellement.  The dimensions of the image are given as so many pixels in one direction (usually height) by so many pixels in another direction (usually width), e.g.: 600 x 800 pixels, or 4,000 x 6,000 pixels.  The overall "size" of the image is calculated by multiplying the height by the width.  In the examples given, the first image is (600 x 800 = ) 480,000 pixels.  The second image is (4,000 x 6,000 = ) 24,000,000 pixels.
    That's a lot of pixels.  The size is often given in megapixels, where 1,000,000 pixels = 1 megapixel (abbreviated MP).  So the first image is approximately half a megapixel, and the second one is 24 MP.
    Pixels themselves have no other unit of measurement.  There is no way from the pixel count to know how many inches (or centimeters) an image will be when printed or shown on a screen.  In order to determine that, you must have the pixels-per-inch (PPI) of the printer or screen (or projector, or any other display device).  A 600 x 800 px. image, at 100 PPI, will be 6 x 8 inches.
    Pixels are device independent. PPI tells some programs and devices how big to display (or print) an image.
    The other image file size measures how much data is in the file.  Data is measured in bytes.  One thousand bytes is a megabyte, abbreviated "MB".
    Generally, the larger the image size, the larger the file size.  But this is not necessarily so, and shouldn't be used as anything but a very general guide.
    Your question is about resolution, which is a question of density:  how many pixels there are in a given area.  This is commonly measured in PPI.  Resolution and file size are independent.
    Message was edited by: Kirby Krieger

  • 6300 image resolution problem

    When I take photos with my 6300 the images are stored at (what it seems) random resolution, varying from 160x120 to 1600x1200... This is very frustrating when you need a high quality photo, but opened in Photoshop it's just 320x 240 !!!
    I have the camera resolution always set at 1600x1200 and the camera display also shows this at shooting time.
    Any suggestions how to solve this problem ??
    Solved!
    Go to Solution.

    Are you using the zoom?
    On some models when you zoom the resolution drops greatly.
    On phone camera's it's always best not to use the digital zoom as you will always lose quality. You should move closer to your target if possible.
    If you are not using the zoom you should check to see if new software is available for your phone at www.nokia.com/softwareupdate.
    Message Edited by psychomania on 14-Aug-2008 10:48 AM

  • Problem when trying to rename uploaded images using session value

    Hi,
    I have a form where 9 images are uploaded made into thumb nail size and then stored in a file. What I´m trying to do is rename those thumbnails from their original name to username_0, username_1, username_2 etc for each of the 9 thumbs. The username comes from the registration form on the same page. I have created a session variable for the username and am trying to use that to change to name of the image name, whilst my images are uploading and resizing the name stays as the original and not as the new username_$number. I have pasted relevant code below and would very much appreciate any help with this:
    <?php session_start();
    // check that form has been submitted and that name is not empty and has no errors
    if ($_POST && !empty($_POST['directusername'])) {
    // set session variable
    $_SESSION['directusername'] = $_POST['directusername'];
    // define a constant for the maximum upload size
    define ('MAX_FILE_SIZE', 5120000); 
    if (array_key_exists('upload', $_POST)) {
    // define constant for upload folder
    define('UPLOAD_DIR', 'J:/xampp/htdocs/propertypages/uploads/');
    // convert the maximum size to KB
    $max = number_format(MAX_FILE_SIZE/1024, 1).'KB';
    // create an array of permitted MIME types
    $permitted = array('image/gif','image/jpeg','image/pjpeg','image/png');
    foreach ($_FILES['photo']['name'] as $number => $file) {
    // replace any spaces in the filename with underscores
    $file = str_replace(' ', '_', $file);
    // begin by assuming the file is unacceptable
    $sizeOK = false;
    $typeOK = false;
    // check that file is within the permitted size
    if ($_FILES['photo']['size'] [$number] > 0 && $_FILES['photo']['size'] [$number] <= MAX_FILE_SIZE) {
    $sizeOK = true;
    // check that file is of a permitted MIME type
    foreach ($permitted as $type) {
    if ($type == $_FILES['photo']['type'] [$number]) {
    $typeOK = true;
    break;
    if ($sizeOK && $typeOK) {
    switch($_FILES['photo']['error'] [$number]) {
    case 0:
    include('Includes/create_thumbs.inc.php');
    break;
    case 3:
    $result[] = "Error uploading $file. Please try again.";
    default:
    $result[] = "System error uploading $file. Please contact us for further assistance.";
    elseif ($_FILES['photo']['error'] [$number] == 4) {
    $result[] = 'No file selected';
    else {
    $result[] = "$file cannot be uploaded. Maximum size: $max. Acceptable file types: gif, jpg, png.";
    ................CODE BELOW IS THE INCLUDES FILE THAT MAKES AND TRIES TO RENAME THE THUMBS................................................
    <?php
    // define constants
    define('THUMBS_DIR', 'J:/xampp/htdocs/propertypages/uploads/thumbs/');
    define('MAX_WIDTH_THB', 75);
    define('MAX_HEIGHT_THB', 75);
    set_time_limit(600);
    // process the uploaded image
    if (is_uploaded_file($_FILES['photo']['tmp_name'][$number] )) {
    $original = $_FILES['photo']['tmp_name'][$number] ;
    // begin by getting the details of the original
    list($width, $height, $type) = getimagesize($original);
    // check that original image is big enough
    if ($width < 270 || $height < 270) {
    $result[] = 'Image dimensions are too small, a minimum image of 270 by 270 is required';
    else { // crop image to a square before resizing to thumb
    if ($width > $height) {
    $x = ceil(($width - $height) / 2);
    $width = $height;
    $y = 0;
    else if($height > $width) {
    $y = ceil(($height - $width) / 2);
    $height = $width;
    $x = 0;
    // calculate the scaling ratio
    if ($width <= MAX_WIDTH_THB && $height <= MAX_HEIGHT_THB) {
    $ratio = 1;
    elseif ($width > $height) {
    $ratio = MAX_WIDTH_THB/$width;
    else {
    $ratio = MAX_HEIGHT_THB/$height;
    if (isset($_SESSION['directusername'])) {
    $username = $_SESSION['directusername'];
    // strip the extension off the image filename
    $imagetypes = array('/\.gif$/', '/\.jpg$/', '/\.jpeg$/', '/\.png$/');
    $name = preg_replace($imagetypes, '', basename($_FILES['photo']['name'][$number]));
    // change the images names to the user name _ the photo number
    $newname = str_replace ('name', '$username_$number', $name);
    // create an image resource for the original
    switch($type) {
    case 1:
    $source = @ imagecreatefromgif($original);
    if (!$source) {
    $result = 'Cannot process GIF files. Please use JPEG or PNG.';
    break;
    case 2:
    $source = imagecreatefromjpeg($original);
    break;
    case 3:
    $source = imagecreatefrompng($original);
    break;
    default:
    $source = NULL;
    $result = 'Cannot identify file type.';
    // make sure the image resource is OK
    if (!$source) {
    $result = 'Problem uploading image, please try again or contact us for further assistance';
    else {
    // calculate the dimensions of the thumbnail
    $thumb_width = round($width * $ratio);
    $thumb_height = round($height * $ratio);
    // create an image resource for the thumbnail
    $thumb = imagecreatetruecolor($thumb_width, $thumb_height);
    // create the resized copy
    imagecopyresampled($thumb, $source, 0, 0, $x, $y, $thumb_width, $thumb_height, $width, $height);
    // save the resized copy
    switch($type) {
    case 1:
    if (function_exists('imagegif'))  {
    $success[] = imagegif($thumb, THUMBS_DIR.$newname.'.gif');
    $photoname = $newname.'.gif';
    else {
    $success[] = imagejpeg($thumb, THUMBS_DIR.$newname.'.jpg',50);
    $photoname = $newname.'.jpg';
    break;
    case 2:
    $success[] = imagejpeg($thumb, THUMBS_DIR.$newname.'.jpg', 100);
    $photoname = $newname.'.jpg';
    break;
    case 3:
    $success[] = imagepng($thumb, THUMBS_DIR.$newname.'.png');
    $photoname = $newname.'.png';
    if ($success) {
    $result[] = "Upload sucessful";
    else {
    $result[] = 'Problem uploading image, please try again or contact us for further assistance';
    // remove the image resources from memory
    imagedestroy($source);
    imagedestroy($thumb);
    ?>
    I hope i´ve supplied enough information and look forward to receiving any help or advise in this matter.

    Use double quotes here:
    $newname = str_replace ('name', '$username_$number', $name);
    Change it to this:
    $newname = str_replace ('name', "$username_$number", $name);

  • Problem while uploading Image to DataBase

    Hi ,
    i m getting exception while executing code below,
    is there anything to configure the data base before uploading images onto the database....
    Connection con=null;
    try{
    Class.forName("youroracledriver").newInstance();
    con = DriverManager.getConnection("url");
    PreparedStatement ps = con.prepareStatement("INSERT INTO pictures VALUES(?,?)");
    File file=new File("F:/servletworkspace/insertingimage/bb.jpg");
    FileInputStream fs = new FileInputStream(file);
    ps.setInt(1,15);
    ps.setBinaryStream(2,fs,(int)file.length());
    int i = ps.executeUpdate();
    if(i!=0){
    out.println("image inserted successfully");
    else{
    out.println("problem in image insertion");
    catch (Exception e){
    System.out.println(e);
    }

    To connect to database if your need to register driver and then make connection. So instead of:
    user8689318 wrote:
    Class.forName("youroracledriver").newInstance();
    con = DriverManager.getConnection("url");you should have (if you are connecting to oracle using oracle jdbc driver):
    DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
    con = DriverManager.getConnection("jdbc:oracle:thin:@<your db listener ip>:<your db listener port>:<your db sid>", "<db user>", "<db user password");
    plus in future if you getting exception, then you should post it as well

  • I have problems with uploading images to my printing company have the images have been manipulated through CS6 i have saved images as jpeg but the printer company tell me they are not j peg, they will not upload images save from a camera are fine

    I have problems with uploading images to my internet printing company when  the images have been manipulated through CS6 and  i have saved images as jpeg  the printer company tell me they are not j peg,
    but images saved from my phone or camera images that have not been manipulated upload fine, What am i doing wrong?

    Save/Export them as JPG. Photoshop defaults to PSD, so make sure you select JPG and not just rename the file to .jpg.
    There are two ways to save them as JPG: Regular Save as option or Save for Web & Devices
    Take your pick.

  • I previously uploaded images onto my desktop to work on in Lightroom 5.2. I worked on a few of the images days ago and just now getting back to them. My problem is I can only access the images I previously worked on and all the rest it says images not ava

    I previously uploaded images onto my desktop to work on in Lightroom 5.2. I worked on a few of the images days ago and just now getting back to them. My problem is I can only access the images I previously worked on and all the rest it says images not available but all the images are still right on my desktop.

    ... and all the rest it says images not available
    Normally this happens because you moved, renamed or deleted these photos (or the folders that contain them) outside of Lightroom. This is how to fix the problem: Adobe Lightroom - Find moved or missing files and folders

  • Problem uploading images with php script.

    As a webdebdesigner i developped a cms system to upload images with php to a mysql database. Firefox version 5.0.1 for MAC and earlier have no problems with uploading through the script. But after that version it is impossible to upload images bigger then 250kb. The page where the customer chooses his image for upload stalls and the form is not sent to the actual upload script, which should validate and process the image.
    This problem only occurs in Firefox, all other browsers work just fine!
    On top of that: Giving feedback to firefox not possible for MAC.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web site development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Multiple Upload Image Problem - Resize GIF files

    The Multiple Image Upload script seems to handle .jpg images without problems.
    However, .gif files return the error:
    "Error converting image (image resize). Image processing library not available or does not support operation. (imagemagick library is not working or not found)."
    The problem is caused by the fact that script that I'm using tries to pass a parameter that is not valid for gif processing:
    myimage.gif' '-quality' '80'
    The "quality" parameter works only for jpeg and .png files as described here:
    http://www.imagemagick.org/script/command-line-options.php#quality
    Please ensure that the script makes difference between .gif and .jpeg files and use the correct parameters so we can resize the images properly.
    Thanks in advance,
    Márcio

    Hi Marcio,
    >>
    Can you tell me the inconveniance of using GD instead of Imagemagick, or its, shortly similar?
    >>
    sorry, but never worked with ImageMagick so far, so I can´t compare
    >>
    The "quality" parameter works only for jpeg and .png files as described here
    >>
    yeah, it seems that this is a small bug in ADDT´s "includes/common/lib/image/KT_Image.class.php" file. Was just checking the code in there, and indeed it adds this extra parameter regardless the image type -- but I do have an idea how this file can be modified to not use this parameter if the file in question has the suffix ".gif".
    If you feel a little adventurous, I´ll happily invite you to modify some code in this file -- please let me know if you´re ready for some instructions. However, if so, please make a backup of this file first...
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Problem with uploading images in interMedia

    Hi,
    I'm a newbie trying to upload images to the Database (Oracle 10g release 2) using interMedia. I created a test table called hmm:
    create table hmm(product_id number, product_photo blob);
    Then I tried to insert the image into the table :
    SQL> insert into hmm (product_id, product_photo) values
    (3003,ORDImage.init('FILE','MEDIA_DIR','mvd.jpg'));
    and I got the following error :
    insert into hmm (product_id, product_photo) values (3003,ORDImage.init('FILE','MEDIA_DIR','mvd.jpg'))
    ERROR at line 1:
    ORA-00932: inconsistent datatypes: expected BLOB got ORDSYS.ORDIMAGE
    Can somebody explain.
    Thanks,
    Steve

    Hi Steve,
    Yes, you created your table with a 'blob' type:
    create table hmm(product_id number, product_photo blob);
    But your insert assumes the product_photo column is an ORDImage type:
    SQL> insert into hmm (product_id, product_photo) values
    (3003,ORDImage.init('FILE','MEDIA_DIR','mvd.jpg'));
    The error: "ORA-00932: inconsistent datatypes: expected BLOB got ORDSYS.ORDIMAGE" is telling you it expected a BLOB in your insert because your table was created with a BLOB type.
    If you change your table creation to this it should work:
    create table hmm(product_id number, product_photo ORDSYS.ORDIMAGE);
    You might want to take a look at the interMedia Image Quick Start on Oracle Technology Network. It should get you up and running quickly. You can find it here:
    http://www.oracle.com/technology/products/intermedia/htdocs/intermedia_quickstart/intermedia_quickstart.html
    Good luck,
    Sue

  • Problem with image resolution with larger screen size

    I was working on Basic Lens Sample (Basic
    Lens Sample) for windows phone 8 App. In this the camera by default sets to default highest resolution.
    Just had couple of questions on this:
    1.) How to change basic settings like resolution,ISO etc.,in this app, because during initial settings
    it only takes default value and when I try to change that it throws an error. Also a code comment is written during initialization of camera to take only these default values. So when to change these settings and how?.
    2.) How to adjust resolution for phablets having 6" screen. Like when I run the code in Lumia 1320,
    the image resolution is not that good and it breaks. So how to adjust screen resolutions for catering different smartphones with different resolutions and screen sizes.
    Any solution or suggestions or snippets is very much appreciated.
    Thanks In Advance.

    Hello,
    For you first question, we can use
    GetAvailableCaptureResolutions method of PhotoCaptureDevice to get the available resolutions in device. That code sample returns the largest resolution by default, you just need to choose an appropriate one. You can find it in CameraController class in
    Models folder in the project.
    For you second question, I tested the sample in lumia 1320, I didn’t see the image broken.
    >> So how to adjust screen resolutions for catering different smartphones with different resolutions and screen sizes.
    You can get an appropriate resolution image and let the OS downscale it for you. You can find the support resolution in the following link. Go to Supported resolutions section.
    http://msdn.microsoft.com/en-us/library/windows/apps/jj206974(v=vs.105).aspx.
    If you want to display the whole large resolution image in lower resolution device, I think you can use
    ScrollViewer control. Use Application.Current.Host.Content.ActualWidth and ActualHeight properties to get the device resolutions, and then you can know if your app is running on a lower resolution device.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • Finding image resolution in a PDF?

    I am currently working to perform some maintenance for an app that formats and resizes documents, usually PDFs. The problem happens when certain files are uploaded with an unusually large image resolution (according to the Preflight Properties, 2222.222/2222.222 pt/in). The documents with this resolution come in with file sizes of 36"x24" and end up formatted to 8.5"x11". This leaves the text and a lot of information unreadable.
    I am using Visual Basic with iTextSharp to interact with the PDFs that come in. I'm able to find the width and height in points of the document without issue. Finding the image's width/height pixel count is what is giving me fits.
    Is there any way in iTextSharp that I can determine the pixel count for the width/height of a PDF Image, or am I heading down a dead end street here?
    Thanks in advance for any help you can provide.

    I hate to reply again, but I'm still stuck. I've been through the SDK and documentation and have had no luck finding anything to help solve this problem. I don't really need to extract the image per se, I just need to find the resolution of it. Could you possibly point me in a definitive direction in the SDK/Documentation that I could use? There are a couple examples that deal with Preflight but none dealing with the image in the PDF or its properties.
    Thanks in advance.

  • How to change image resolution in oracle forms.

    Hi Experts,
    I am working on oracle forms 10g (Windows7 OS). Can we get the image resolution of an image item in oracle forms? Can we resize the image in terms of resolution?
    I have a requirement where user can upload only 1280x720 size images. Either i have to validate the image resolution and give them a message saying 'Only 1280x720 size images are allowed' or simply i have to convert the image to be upload to 1280x720 size and save in the database. If someone could give the solution for the above problem that would be very much appreciated.
    Thanks,
    Pramod SR

    1. You need to resample.
    2. You can automate the process.
    1.
    Open one of the images.
    Go to Image > Image Size
    Set the units to Percent (100)
    Change the resolution to 300 ppi (not cm!)
    Make sure Resample is checked
    2. automation
    Test the above steps to make sure it works.
    Record the steps as an action.
    Make a droplet from the action.
    Drag the folder with the images to the droplet.

  • Will there be a fix to the low image resolutions in Photostream between the iPhone?

    Photostream problems arise in the highly inadequate process Apple has currently set up. Once an image is taken by an iPhone they are automatically uploaded to photostream....
    ...This is where the troubles begin.
    Should you then download that newly taken/uploaded image to an iPad (iOs) via Photostream for the purpose of editing, it will have it's resolution reduced automatically (no choice of the user). Converserly, should you download that same newly taken/uploaded image via Photostream onto your desktop/laptop (MacOs), surprisingly it will be the original size in which it was taken w/ no reductions in the resolution.
    WHY?
    Apple, please fix this, otherwise this makes using photostream on my ipad for image transfer/edit (for larger screen real estate), totally obsolete!
    This is very frustrating as this is one of the main reasons why I purchased an ipad in the first place.

    IPhoto on the iPad does support RAW images by the way, and other apps too.
    That depends on what you are calling "support". If you read the iPhoto documentation carefully, you will see, that iPhoto does not do any more than import and store the raw files, but cannot edit the. For browsing the embedded jpeg preview will be displayed, and if you edt the raw image, the edited image will be derived from the jpeg preview. The raw file will never be developed.
    See: Using RAW images with iPhoto for iOS: http://support.apple.com/kb/HT5182
    When you import a RAW image to your iPad, iPhoto will display only the JPEG version of the image embedded in the RAW file. When editing a RAW image in iPhoto, the edits are derived from the embedded JPEG, and saved in JPEG format.
    You cannot email RAW images from iPhoto, but you can share unedited RAW images to iTunes:
    Tap one of the photos you want to share to iTunes.
    Tap the share icon, and select iTunes from the options that appear.
    Follow the prompts to select one or more images to send to iTunes.
    In iTunes, select your device, and choose Apps.
    Scroll down to File Sharing.
    Select iPhoto, and then your photos. Click "Save to...".
    If you made any edits to your image, iPhoto will send a JPEG version to iTunes instead.
    If you import RAW+JPEG images, iPhoto will display and export the JPEG version.
    Nowhere is stated, that iPhoto can process raw images.
    With respect to the photo stream - believe, I am not happy with it, as it is. My post was meant to support your statement.
    The IOS devices are computers, but not yet up to serious, high resolution image processing. Everything is reduced to smaller resolutions and only easy to navigate, if you only work with a small set set of images, not with a large photo library, which is o.k. for web sharing and emailing, but not for preprocessing the images for further edits on your computer.
    Just try to delete 500 images at once from the iPad, when you are running out of storage. You will have to select them one by one, to delete them.

  • Upload images to eBay

    I wonder if anybody is able to upload images to eBay, when selling an item.
    If I select an image and then click on the upload button nothing happens. The images are jpg-files with the recommended resolution. I am using the latest version of safari on Mac OS X 10.4.10. Any idea? Are there any special options in safari that have to be checked?

    Hello SaTh,
    Welcome to Apple Discussions.
    Have you previously been able to upload the pictures and this has just started to happen or is it your first attempt to load pictures on ebay.
    This is what I do and have not had any problems with my pictures uploading.
    Click add picture then choose file
    After you select your picture you must click choose in the bottom right hand corner then that pop up disappears and that picture name appears as No. 1. If you need to get another picture click choose file again and do the same as above. When all your picture names are in the list then click upload.
    This works for me with Safari. I use Firefox as well with another ID and the procedure is the same except choose file says Browse and choose says open
    The only difference I can see between the 2 browsers with ebay is that Firefox seems to do everything a little quicker.
    Hope this helps.
    Regards,
    Alan

Maybe you are looking for

  • External DVD drive not working with Lombard G3 333

    I have an external DVD drive that worked when I had 10.4, but had to reformat HD and now only have 10.3.9, and now the DVD drive does not work with DVDs, it will work with CDs and CDR media, but not with DVD media. My Lombard did not come with DVD or

  • Updated a Adobe Acrobat plug-in

    Hi to all, excuse for my english I am Italian. I developed a plug-in for Adobe with Adobe SDK 9.0 and I want to update it in the future, my question is: "Is it possible Updated the plug-in with a some functions of SDK or There are other ways of updat

  • Install Documentation for MSS 60.1.19

    Does anyone know where I can find documentation with explicit instructions on installing MSS 60.1.19?  If I go "Business Package for Manager Self-Service 60.1" in the SAP Library, it suggests that Note:642775 has instructions for installing business

  • Java.lang.ThreadDeath

    Hello I have got the following error when I try to close the frame or when I try to stop the applet. java.lang.ThreadDeath at java.lang.Thread.stop(Thread.java:715) at org.apache.tools.ant.module.bridge.impl.BridgeImpl.forciblyStop(BridgeImpl.java:32

  • Withholding tax settings

    Hello Friends, With respect to withholding tax settings i have a query. In the IMG menu there is withholding tax setting available under Financial Accounting >Financial Accounting Global Settings and also availalbe under Financial Accounting >Account