Search found 8 matches
- 2011-02-12T00:08:42-07:00
- Forum: Users
- Topic: compile my software, appeare "undefined reference to `jpeg"
- Replies: 2
- Views: 13143
Re: compile my software, appeare "undefined reference to `jp
finally,
i solve this problem,
the reason is , i install libjpeg62-dev wrong...
this my step, to solve problem:
1. apt-get remove libjpeg62-dev
2. apt-get remove libjpeg62
3. apt-get install libjpeg62-dev
4. then
reconfigure, make , make install IM...
- 2011-02-11T20:58:59-07:00
- Forum: Developers
- Topic: strip, how to use c++
- Replies: 3
- Views: 7496
Re: strip, how to use c++
in command, like: convert aa.jpg -strip bb.jpg,
the aa.jpg's metadata will be deleted...
in cpp code, in which way, how can i implement this efforts...
the aa.jpg's metadata will be deleted...
in cpp code, in which way, how can i implement this efforts...
- 2011-01-31T01:55:09-07:00
- Forum: Developers
- Topic: strip, how to use c++
- Replies: 3
- Views: 7496
Re: strip, how to use c++
anybody can help me?
- 2011-01-27T03:35:22-07:00
- Forum: Developers
- Topic: strip, how to use c++
- Replies: 3
- Views: 7496
strip, how to use c++
in command, use -strip, can remove image's verbose
but c++ code,
how can i do?
but c++ code,
how can i do?
- 2011-01-24T01:40:17-07:00
- Forum: Users
- Topic: compile my software, appeare "undefined reference to `jpeg"
- Replies: 2
- Views: 13143
Re: compile my software, appeare "undefined reference to `jp
any body knows?
hlp...
hlp...
- 2011-01-18T20:17:10-07:00
- Forum: Users
- Topic: compile my software, appeare "undefined reference to `jpeg"
- Replies: 2
- Views: 13143
compile my software, appeare "undefined reference to `jpeg"
/usr/local/lib/libMagickCore.so.4: undefined reference to `jpeg_simple_progression@LIBJPEG_6.2' /usr/local/lib/libMagickCore.so.4: undefined reference to `jpeg_finish_compress@LIBJPEG_6.2' /usr/local/lib/libMagickCore.so.4: undefined reference to `jpeg_write_scanlines@LIBJPEG_6.2' /usr/local/lib ...
- 2011-01-12T19:43:28-07:00
- Forum: Users
- Topic: why this command can not compress png image...
- Replies: 4
- Views: 10016
Re: why this command can not compress png image...
if you are on Q16 IM, try adding -depth 8 to your command. IM is not good at optimizing PNG, but your PNG quality is not set right. See http://www.imagemagick.org/Usage/formats/#png_quality. Also IM is not really good at optimizing PNG so you should try one of the third party optimizers. see http ...
- 2011-01-11T23:33:01-07:00
- Forum: Users
- Topic: why this command can not compress png image...
- Replies: 4
- Views: 10016
why this command can not compress png image...
i have a png format picture, but it seems too big for me, i wanna compress it ... how can i do ... command line... convert "png.png" -strip -units PixelsPerInch -density 96 -quality 60 "png2.png" this command can't compress the picture, the worse is: the size will be greater... :cry: http://my ...