Search found 12163 matches

by snibgo
2013-05-21T15:37:35-07:00
Forum: Users
Topic: Develop Canon RAW images into mutliple tiffs
Replies: 4
Views: 7232

Re: Develop Canon RAW images into mutliple tiffs

Can't be done. High Dynamic Range is a technique for taking multiple photographs, at different exposures, and combining them into one. If you have only one RAW file, you can't create any number of differently exposed images from it. However, you can create effects that look similar, using "-sig...
by snibgo
2013-05-21T13:22:38-07:00
Forum: Users
Topic: Removing dust
Replies: 11
Views: 8215

Re: Removing dust

My script above has a bug: "-clone 0" should be "-clone 1". In this scan, the "alpha" channel is actually (I think) infra-red. In theory, it ignores the image in the photographic negative, and picks up only dust on the film. Converting it to an image, it seems to me tha...
by snibgo
2013-05-21T09:52:47-07:00
Forum: Users
Topic: Creating a label in a Picture, please help!!
Replies: 1
Views: 2438

Re: Creating a Postal label Picture

Try using "-density" and "-interline-spacing".
by snibgo
2013-05-21T09:41:37-07:00
Forum: Users
Topic: Problem converting JPG
Replies: 6
Views: 11025

Re: Problem converting JPG

Code: Select all

$ convert -scale 50x50 Nuclear_reprogramming_03.jpg
"convert" needs an output filename.
by snibgo
2013-05-20T17:14:09-07:00
Forum: Users
Topic: [bash] Problem when overlaying two images : result is darker
Replies: 14
Views: 16573

Re: [bash] Problem when overlaying two images : result is da

convert sparse_color.jpg \( test.jpg -profile "xx.icc" \) -gravity northwest -geometry +10+10 -composite test22.jpg and the image is as dark as with no profile specified. I don't get it. Your image already has xx.icc profile applied. Your command would convert it to exactly the same profi...
by snibgo
2013-05-20T16:44:41-07:00
Forum: Users
Topic: Removing dust
Replies: 11
Views: 8215

Re: Removing dust

I have no experience of this methods of scanning then removing dust, but the following (Windows 7 script) gives a reasonable result. convert ^ scan0003.tif ^ -set colorspace RGB ^ -colorspace sRGB ^ ( +clone -channel RGB -statistic maximum 4x4 ) ^ +swap ^ ( -clone 0 -channel A -level 70%%,75%% -sepa...
by snibgo
2013-05-20T15:05:29-07:00
Forum: Users
Topic: resize each pictures into the same physical size for print!
Replies: 13
Views: 23123

Re: resize each pictures into the same physical size for pri

I don't print via PDF files, because that just adds an extra layer of complexity. A4 paper is 297x210mm (11.693x8.238 inches), but most printers can't print up to all four edges. If you use ImageMagick to convert a load of images to a single PDF file, the pages will be different sizes and aspect rat...
by snibgo
2013-05-20T13:30:18-07:00
Forum: Users
Topic: Tile n-pages of TIFF into 1 image
Replies: 3
Views: 2923

Re: Tile n-pages of TIFF into 1 image

I happens to me. I sometimes figure out a complex solution to a problem, completely overlooking a simple solution -- a solution that I always knew but had forgotten.

I sometimes think I have forgotten more than I ever knew.
by snibgo
2013-05-20T12:21:04-07:00
Forum: Users
Topic: Tile n-pages of TIFF into 1 image
Replies: 3
Views: 2923

Re: Tile n-pages of TIFF into 1 image

"+append" should do it. If the input has one image, "+append" does nothing. If it has many images, they are placed side by side. As a command line:

Code: Select all

convert in.tif +append out.png
by snibgo
2013-05-20T09:21:59-07:00
Forum: Bugs
Topic: [RESOLVED] possible bug -resize XX@ IM 6.8.5.7 Mac OSX
Replies: 5
Views: 3645

Re: possible bug -resize XX@ IM 6.8.5.7 Mac OSX

On Windows 7, IM 6.7.9 and 6.8.5, with or without double-quotes, the command works fine.
by snibgo
2013-05-19T20:40:26-07:00
Forum: Users
Topic: [bash] Problem when overlaying two images : result is darker
Replies: 14
Views: 16573

Re: [bash] Problem when overlaying two images : result is da

I am not 100% sure that it is strictly related to IM, because even the thumbnail of the original image ( test.jpg ) in Nautilus ( i.e. the default files explorer in Ubuntu ) seems to be as dark as the result image ( test2.jpg ). But if I open this picture ( test.jpg ) in the gnome image viewer or i...
by snibgo
2013-05-19T16:36:03-07:00
Forum: Users
Topic: [bash] Problem when overlaying two images : result is darker
Replies: 14
Views: 16573

Re: [bash] Problem when overlaying two images : result is da

fmw42 wrote:Your green image has a Dark RGB profile that is causing the trouble. I do not have that profile ...
You can easily get it...

Code: Select all

convert test.jpg xx.icc
... although I don't think it's needed for a conversion to sRGB, at least on modern versions of IM.
by snibgo
2013-05-19T15:49:16-07:00
Forum: Users
Topic: [bash] Problem when overlaying two images : result is darker
Replies: 14
Views: 16573

Re: [bash] Problem when overlaying two images : result is da

"identify -verbose test.jpg" tells me your test.jpg contains a profile named "Darktable linear RGB". I can convert it to sRGB with: convert test.jpg -profile sRGB.icc tx.png (where sRGB.icc is a file in my current directory). Thus: convert sparse_color.jpg ( test.jpg -profile sRG...
by snibgo
2013-05-19T10:51:12-07:00
Forum: Users
Topic: [bash] Problem when overlaying two images : result is darker
Replies: 14
Views: 16573

Re: [bash] Problem when overlaying two images : result is da

Without seeing the images, it's hard to diagnose.

Ubuntu uses an ancient version of IM. An upgrade might cure the problem.