• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How to set dpi of an image
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to set dpi of an image


  • Subject: Re: How to set dpi of an image
  • From: "email@hidden" <email@hidden>
  • Date: Thu, 21 May 2009 09:39:19 +0100


On 21 May 2009, at 08:29, Mahaboob wrote:

I need to save the image with respect to the given dpi.
I calculated the image size proportional to the dpi and saved it.
But when I'm viewing the dpi from preview it shows only 72 dpi.

I used the code like:

float compressionFactor = [compressionSlider floatValue];

NSDictionary *jpegProperties = [NSDictionary dictionaryWithObject: [NSNumber
numberWithFloat: compressionFactor] forKey: NSImageCompressionFactor];


   NSSize size = [image size];

unsigned int resfac = (unsigned int)[bitmapResolution intValue];



   [image setScalesWhenResized:YES];



   [image setSize:NSMakeSize(size.width * resfac/72, size.height *
resfac/72)];

setSize: doesn't change the underlying image reps
see the docs http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaDrawingGuide/Images/Images.html#/ /apple_ref/doc/uid/TP40003290-CH208-SW2


or this http://weblog.scifihifi.com/2005/06/25/how-to-resize-an-nsimage/

Apple has some decent sample code with CoreImage additions here
http://developer.apple.com/SampleCode/Reducer/listing16.html


NSBitmapImageRep *theBmapRep = [NSBitmapImageRep imageRepWithData: [image
TIFFRepresentation]];


NSData *exportedData;

exportedData = [ theBmapRep representationUsingType:NSJPEGFileType
properties:jpegProperties];

Is it I'm missing something?
How can I set the exact dpi?

Thanks in advance
Mahaboob




_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden

Jonathan Mitchell

Central Conscious Unit
http://www.mugginsoft.com




_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: How to set dpi of an image
      • From: Mahaboob <email@hidden>
References: 
 >How to set dpi of an image (From: Mahaboob <email@hidden>)

  • Prev by Date: Apple Sample Code not working? SampleCMPlugin
  • Next by Date: Re: Menu item with 'title' bound is always enabled. Bug?
  • Previous by thread: How to set dpi of an image
  • Next by thread: Re: How to set dpi of an image
  • Index(es):
    • Date
    • Thread