Search found 11 matches

by olaola
2014-03-22T02:20:26-07:00
Forum: Users
Topic: Thumbnail does not show real photo content
Replies: 5
Views: 4525

Re: Thumbnail does not show real photo content

I tested on latest version of imagemagick, it still has this issue, and i found if i open this image in windows paint and save as another file, then i use the same command, the output image is ok with good thumbnail. Seems window paint can fix something in the EXIF data but ImageMagick can't. I foun...
by olaola
2014-03-19T03:12:23-07:00
Forum: Users
Topic: Thumbnail does not show real photo content
Replies: 5
Views: 4525

Re: Thumbnail does not show real photo content

The imagemagick version 6.7.4-9, and the command i used is
convert input.jpeg add.png -composite output.jpeg
I don't have the bad image, this issue does not happen on all the images, it only happened on certain jpeg file.
by olaola
2014-03-18T22:42:45-07:00
Forum: Users
Topic: Thumbnail does not show real photo content
Replies: 5
Views: 4525

Thumbnail does not show real photo content

I am using imagemagick convert -composite command to combine some jpg with png files. I found for some of the photos, if I look at the thumbnail, it just display the original jpg content, but if i open it in any image tool, i can see the png content has been applied on it, and for most of the photos...
by olaola
2013-08-30T19:01:54-07:00
Forum: Users
Topic: got corrupt image file with half blue or gery
Replies: 5
Views: 4516

Re: got corrupt image file with half blue or gery

Does it happen consistently with the same file? If you are on shared hosting, it may be possible that their tmp directory is getting full if some files are left there until the tmp directory is cleared by the OS probably overnight. see MAGICK_TEMPORARY_PATH at http://www.imagemagick.org/script/reso...
by olaola
2013-08-30T18:27:55-07:00
Forum: Users
Topic: got corrupt image file with half blue or gery
Replies: 5
Views: 4516

Re: got corrupt image file with half blue or gery

the version is ImageMagick-6.7.4-Q16, and the system is linux, probably is redhat, I am not sure, because i don't have access to that server. The command is very simple, just add one picture to another: convert aa.jpeg bb.png -composite -quality 95.0 -density 300 out.jpeg, aa jpeg is the base file a...
by olaola
2013-08-30T17:58:27-07:00
Forum: Users
Topic: got corrupt image file with half blue or gery
Replies: 5
Views: 4516

got corrupt image file with half blue or gery

This happened a couple of times, we are using im4java to call the imagemagick, basically only use the convert command, the output file seems corrupt, because i can't open it with my image tool which is xnviewer i usually use, but i can still open it in windows photo viewer, then i found the image do...
by olaola
2013-08-21T18:43:16-07:00
Forum: Users
Topic: huge temp magick file
Replies: 3
Views: 4588

Re: huge temp magick file

ok, got it, seems my IM always crashed, i only used command line, did not notice it.
by olaola
2013-08-21T08:12:15-07:00
Forum: Users
Topic: huge temp magick file
Replies: 3
Views: 4588

huge temp magick file

I just found today that my c disk is running out of space, it is very strange because i did not put anything big recently, after check the folders i found a huge file in the temp C:\Users\xxx\AppData\Local\Temp, file name is magick-FxU4GFJd, the size is 31.5G, based on the name, it has something to ...
by olaola
2013-08-05T06:14:14-07:00
Forum: Users
Topic: Need help on the resize and -composite in convert
Replies: 6
Views: 7935

Re: Need help on the resize and -composite in convert

For a start this looks wrong to me as you should just have an offset: -geometry 600x400+827+1171 Should be -geometry +827+1171 Posting the error may have given more information Try this: convert ( firstimage.jpg -auto-orient -crop 2508x1791+321+320 ) stickerimage.png -resize 627x -geometry +827+117...
by olaola
2013-08-05T00:57:50-07:00
Forum: Users
Topic: Need help on the resize and -composite in convert
Replies: 6
Views: 7935

Re: Need help on the resize and -composite in convert

GreenKoopa wrote:Welcome. Platform and version?
latest windowns binary on win7 x64.

i think i got it by myself, just remove the -resize seems working, don't know why, i am testing with more cases.
by olaola
2013-08-05T00:46:27-07:00
Forum: Users
Topic: Need help on the resize and -composite in convert
Replies: 6
Views: 7935

Need help on the resize and -composite in convert

Hello, I wrote command like this: convert firstimage.jpg -auto-orient -crop 2508x1791+321+320 stickerimage.png -resize 627 -geometry 600x400+827+1171 -composite -quality 98.0 -density 300 output.jpg my puopose is to resize the stickerimage.png and put it on the firstimage.jpg with the geometry param...