Search found 12163 matches

by snibgo
2013-07-18T11:56:50-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32100

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

So you've given up with ImageMagick? Fair enough. Just out of curiosity, did you try correcting the commands as I suggested above?
by snibgo
2013-07-18T09:43:07-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32100

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

Good theory, but the second command expands to:

Code: Select all

convert C:\ImageMagick\convert -list configure
and I assume it should expand to:

Code: Select all

convert -list configure
by snibgo
2013-07-18T08:42:17-07:00
Forum: Bugs
Topic: Huge Memory Usage with GIF using Identify
Replies: 3
Views: 5593

Re: Huge Memory Usage with GIF using Identify

Yes, the first frame (or any frame) can be resized, eg:

Code: Select all

convert in.gif[0] -resize 10% out.png
How many frames are there?

Code: Select all

identify -ping -format "%n" in.gif
List the frames:

Code: Select all

identify -ping in.gif
by snibgo
2013-07-18T07:47:07-07:00
Forum: Developers
Topic: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)
Replies: 9
Views: 32100

Re: VERSION ISSUES IIS7.5 (imagemagick, php_imagick.dll)

I think your commands are screwed up. They mention "convert" twice. For example, the first one expands to: convert C:\ImageMagick\convert uploads\17364.pdf uploads\thumbs\Test.png 2>&1 From the error message, we see that "convert" is running correctly and looks for an image a...
by snibgo
2013-07-18T07:41:56-07:00
Forum: Developers
Topic: Convert using ImageMagick using PHP
Replies: 52
Views: 103229

Re: Convert using ImageMagick using PHP

I don't use PHP so I could be wrong, but I think exec() doesn't need libraries; it just executes a command, as if it had been issued from the keyboard.
by snibgo
2013-07-18T06:48:29-07:00
Forum: Users
Topic: bilinear point in percents
Replies: 19
Views: 9685

Re: bilinear point in percents

It would be good if all (x,y) coordinates could be given as percentages of (width,height). Sadly, they can't, and we have to do the necessary caculation in a script.
by snibgo
2013-07-18T06:04:56-07:00
Forum: Developers
Topic: Find Circle Parameter
Replies: 8
Views: 12159

Re: Find Circle Parameter

The image contains no circles at all. It does contain a number of marks that are reasonably close to being circles. You need to decide what determines "nearly a circle". A possible approach would be to choose a possible centre and radius, draw a circle, and count how many corresponding pix...
by snibgo
2013-07-18T05:53:24-07:00
Forum: Users
Topic: 14bit Camera raw to 16bit tiff Logluv HDR
Replies: 10
Views: 7984

Re: 14bit Camera raw to 16bit tiff Logluv HDR

According to Wikipedia , LogLuv stores one channel in 16 bits and the other two channels in 8 bits each. A developer would need to comment on the feasibility of implementing LogLuv: adding the colorspace conversion functions and modification to file read/write functions. It could be simulated, with ...
by snibgo
2013-07-17T20:45:40-07:00
Forum: Users
Topic: how to remove its shadow and get trimmed
Replies: 11
Views: 8098

Re: how to remove its shadow and get trimmed

It's not just a shadow but also a reflection. In the sample image, it merges with the object. Automatic separation would be very difficult and probably unreliable.
by snibgo
2013-07-17T19:25:08-07:00
Forum: Users
Topic: Extract non-Exif orientation data from JPEG?
Replies: 6
Views: 9645

Re: Extract non-Exif orientation data from JPEG?

I'm not sure what you are asking. exiftool reports:

Code: Select all

XMP-tiff:Orientation='Rotate 90 CW'
by snibgo
2013-07-17T17:56:31-07:00
Forum: Bugs
Topic: Tiff To PDF blank page
Replies: 3
Views: 2454

Re: Tiff To PDF blank page

It works for me (v6.8.6-0 on Windows 7) in the sense that I can convert it PDF then from the PDF to PNG and it looks the same (in Microsoft Photo Viewer). However, Adode Reader X (v10.1.7) shows a blank white page, 32 inches wide by 200 inches high. I suspect this software can't cope with such a lar...
by snibgo
2013-07-17T12:13:48-07:00
Forum: Users
Topic: Replace chroma key by image
Replies: 10
Views: 4952

Re: Replace chroma key by image

Export as text, and search for the corners ("most north-westerly point", etc) in a script. Yes, that looks like a sensible method. Thanks.
by snibgo
2013-07-17T11:44:54-07:00
Forum: Developers
Topic: Find Circle Parameter
Replies: 8
Views: 12159

Re: Find Circle Parameter

gowribala: Can you post a sample image? Put it somewhere like dropbox and post the URL here.
by snibgo
2013-07-17T11:39:48-07:00
Forum: Users
Topic: Replace chroma key by image
Replies: 10
Views: 4952

Re: Replace chroma key by image

I'll add another thought here. Perhaps the OP wants the logo to appear on the photo, not only in the correct location, but also with the correct perspective. This would involve (a) finding the corners of the blue patch on each image, then (b) applying "-distort perspective" to the logo. St...
by snibgo
2013-07-16T23:02:21-07:00
Forum: Bugs
Topic: writing multi-image tiff
Replies: 12
Views: 5019

Re: writing multi-image tiff

I used to have problems doing this with Gimp, probably building the layered tiff from different tiff files (with different types).
GreenKoopa wrote:In either case, this would be my criteria: ...
Yes, good points about the standards and "-type least_common_denominator".