Yes, it's a PNG.glennrp wrote:Is your PNG really a PNG? On iPhone, PNGs are converted by pngcrush (which isn't really pngcrush) to a non-PNG format that pretends to be PNG.
Normal PNG applications such as ImageMagick will reject them.
Search found 8 matches
- 2011-09-22T20:32:37-07:00
- Forum: Bugs
- Topic: ConvertImageCommand Oddness
- Replies: 6
- Views: 16007
Re: ConvertImageCommand Oddness
- 2011-09-22T02:27:27-07:00
- Forum: Users
- Topic: MagickCommandGenesis Problem
- Replies: 4
- Views: 11366
Re: MagickCommandGenesis Problem
Are you able to give me a hand with the following Objective-C code?
http://www.wizards-toolkit.org/discours ... 00d#p76653
http://www.wizards-toolkit.org/discours ... 00d#p76653
- 2011-09-21T15:59:18-07:00
- Forum: MagickWand
- Topic: ConvertImageCommand() and Objective-C.
- Replies: 2
- Views: 18425
ConvertImageCommand() and Objective-C.
I have the following code, which is simply meant to resize an image using: ConvertImageCommand() However, with the lack of documentation in Objective-C I'm not quite sure whether I'm implemented it correctly at all. This is what I have so far (it is simply the IM_Test.zip Xcode project) from here ...
- 2011-09-21T07:49:14-07:00
- Forum: Bugs
- Topic: ConvertImageCommand Oddness
- Replies: 6
- Views: 16007
Re: ConvertImageCommand Oddness
OK, so I have it figured out. Even though checking for the clut file reported it existed and that it was readable (using NSFileManager), apparently for some reason unknown to me it was not readable by 'convert'. The clut was in the main bundle (resource) folder (which is accessible by the app). I ...
- 2011-09-21T06:54:53-07:00
- Forum: Users
- Topic: MagickCommandGenesis Problem
- Replies: 4
- Views: 11366
Re: MagickCommandGenesis Problem
Did you ever figure this out?
- 2011-09-21T04:53:28-07:00
- Forum: MagickWand
- Topic: iPhone - ConvertImageCommand(), MagickWand() in Objective-C.
- Replies: 4
- Views: 20902
Re: iPhone - ConvertImageCommand(), MagickWand() in Objectiv
Metadata is returned in that array. You can keep it null if you don't care about it. Okay, I see. Do you think you'd be able to give me a hand modifying my array to contain what's in my batch file? I'm not quite sure how to create one whole line with all of my properties. Also, I wasn't sure what ...
- 2011-09-21T04:49:31-07:00
- Forum: MagickWand
- Topic: iPhone - ConvertImageCommand(), MagickWand() in Objective-C.
- Replies: 4
- Views: 20902
Re: iPhone - ConvertImageCommand(), MagickWand() in Objectiv
The argc parameter is an integer that specifies the number of arguments in the argv[] array. The argv[] array contains the command line arguments (e.g. argv[0] = "convert", argv[1] = "image.png", argv[2] = "output.jpg"). Okay, I've updated my code to a resize example, however would you be able to ...
- 2011-09-20T23:14:52-07:00
- Forum: MagickWand
- Topic: iPhone - ConvertImageCommand(), MagickWand() in Objective-C.
- Replies: 4
- Views: 20902
iPhone - ConvertImageCommand(), MagickWand() in Objective-C.
I have the following batch file that works successfully in Windows using "convert.exe" @echo off set SOURCE=input_file.jpg del output_file.jpg del source_copy.jpg conv %SOURCE% -fill "#fff8f2" -colorize 100%% fill.jpg copy %SOURCE% source_copy.jpg conv %SOURCE% -modulate 100,0,100 -|^ conv - source ...