NSImage PDF -> JPG
Does anyone know how to convert an NSImage loaded by imageNamed@"somthing.pdf", the type you get with screenshots on .3.9, into a jpeg?
Sir, e^iπ + 1 = 0, hence God exists; reply!
You can open it with NSImage's open image with file init method, then create an NSBitmapImageRep from the TIFFRepresentation of the image. After that, you can get the NSData for various image formats and save them to the disk. (look at the documentation for the exact method names)
Edit: basically exactly what you did with your GlyphTool, but first load the image using NSImage's initWithContentsOfFile method.
Edit: basically exactly what you did with your GlyphTool, but first load the image using NSImage's initWithContentsOfFile method.
Oh that works!
Thanks so much I was getting really stressed about not being able to convert pdf's.
Code if anyone wants to convert whatever image type into a jpg
Thanks so much I was getting really stressed about not being able to convert pdf's.
Code if anyone wants to convert whatever image type into a jpg
Code:
#import <Cocoa/Cocoa.h>
int main (int argc, const char * argv[]) {
if(argc != 3)
return 0;
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSApplicationLoad();
NSImage *image = [[NSImage alloc] initWithContentsOfFile:[NSString stringWithCString:argv[1]]];
NSData *tiffRep = [image TIFFRepresentation];
NSBitmapImageRep *rep = [[NSBitmapImageRep alloc] initWithData:tiffRep];
NSData *bitmapData = [rep representationUsingType:NSJPEGFileType properties:NULL];
[bitmapData writeToFile:[NSString stringWithCString:argv[2]] atomically:YES];
[pool release];
return 0;
}Sir, e^iπ + 1 = 0, hence God exists; reply!
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| Basic NSImage drawing help please! | xenocide | 6 | 4,795 |
Feb 2, 2009 11:01 AM Last Post: FlamingHairball |
|
| NSImage and PNG's | bmantzey | 3 | 4,349 |
Nov 29, 2008 07:01 PM Last Post: arekkusu |
|
| How to get resolution of an NSImage or NSBitmapImageRep? | aegidian | 4 | 4,669 |
Oct 18, 2005 02:39 AM Last Post: aegidian |
|
| Help with NSImage and NSString... | Joseph Duchesne | 2 | 4,089 |
Sep 30, 2005 02:21 PM Last Post: unknown |
|
| NSImage -> Jigsaw peices | unknown | 5 | 3,333 |
Sep 29, 2005 07:00 AM Last Post: unknown |
|

