Search found 11 matches

by fragileandys
2012-05-04T07:53:30-07:00
Forum: Users
Topic: piping more than once
Replies: 5
Views: 15445

Re: piping more than once

Anthony, thank you very much. And thanks for the links, I had never seen the part on parenthesis.
by fragileandys
2012-05-03T08:45:16-07:00
Forum: Users
Topic: piping more than once
Replies: 5
Views: 15445

Re: piping more than once

Well, what I'm trying to do is use the watermark created in the 1st command and the watermarked image created in the 2nd command to then in a 3rd piped command use the -stegano function to hide the watermark in the watermarked image. so I would like to do: convert -gravity center -size 90x60 label ...
by fragileandys
2012-05-02T14:42:18-07:00
Forum: Users
Topic: piping more than once
Replies: 5
Views: 15445

piping more than once

I am dynamically creating a watermark image with 'convert' then piping it into a 'composite' command to watermark the image without having to save the watermark image: convert -gravity center -size 90x60 label:"username" miff:- | composite -dissolve 90 -tile - image.jpg jpg:- After the composite ...
by fragileandys
2012-02-08T17:10:37-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

First off, this image is not my own. I do not own it and do not claim to have taken the photo. photobucket album password: imtesting The original image: http://i28.photobucket.com/albums/c242/fragileandys/im/image.jpg The watermarked image: http://i28.photobucket.com/albums/c242/fragileandys/im/copy ...
by fragileandys
2012-02-08T15:09:01-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

It doesnt appear that there is a virtual canvas applied to it. The 'Page Geometry' is the same as the 'identify' output. What I'm doing is tiling a watermark across an image at .5% opacity. Then comparing the original image with the watermarked image to show the watermark. If I crop the watermarked ...
by fragileandys
2012-02-08T09:25:01-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

Anthony

So if the image is cropped in an outside program that saves the virtual canvas (the default 'preview' on a Mac), there's nothing I can do about it?
by fragileandys
2012-02-07T13:56:13-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

haha, thanks man, i'll mess around with that +repage more
by fragileandys
2012-02-07T13:38:42-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

Thanks for all your help fmw42!!

I just cropped the same image using photoshop and saving is as a ping and it worked fine. So 'preview' must do something strange to the image before it saves.
by fragileandys
2012-02-07T13:25:32-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

I didn't use IM to crop the image. I am on a mac, I opened the copy.png with the built-in 'preview' application, cropped it and saved it out from there.
by fragileandys
2012-02-07T11:43:34-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

Re: compose blending different with cropped image, why?

The +repage doesnt seem to have any effect.

Let me specify that the first command is the one that is working how I want it to and would like to replicate with the cropped image, comparing it to the original.
by fragileandys
2012-02-07T11:02:09-07:00
Forum: Users
Topic: compose blending different with cropped image, why?
Replies: 19
Views: 29179

compose blending different with cropped image, why?

I have an image, and an almost exact copy of the same image that I am compose blending together with ModulusSubtract into one image: convert -page 185x230 img.jpg -page +0 copy.png -background none -compose ModulusSubtract -flatten out.png However if I crop the copy.png image and try the same ...