Search found 79 matches

by holden
2015-03-20T09:19:02-07:00
Forum: Users
Topic: error, missing dll (IM via VBScript)
Replies: 2
Views: 5457

error, missing dll (IM via VBScript)

PPS I take it back, Q16 is fast enough :) ImageMagickObject.MagickImage.1 error '80041771' identity: 395: unable to open module file `C:\Program Files\ImageMagick-6.9.0-Q16\modules\coders\IM_MOD_RL_DB_.dll': No such file or directory @ warning/module.c/GetMagickModulePath/672: identity: 420: no deco...
by holden
2014-12-07T06:48:06-07:00
Forum: Users
Topic: How to use -magnify?
Replies: 5
Views: 8181

How to use -magnify?

This bit of code gives me an error: convert image.png -magnify imagebig.png I get this: convert: unrecognized option `-magnify' @ error/convert.c/ConvertImageCommand/2030. From what I can tell no value is needed after the -magnify command, based on the limited info availble here and in the manual. I...
by holden
2014-06-06T05:28:40-07:00
Forum: Users
Topic: Animated Gif Conversion
Replies: 5
Views: 8496

Re: Animated Gif Conversion

Is it the resolution, or is it because gifs only support 256 colors as opposed to millions that other formats do, from wikipedia: "The (gif) format supports up to 8 bits per pixel for each image, allowing a single image to reference its own palette of up to 256 different colors chosen from the ...
by holden
2014-06-04T08:26:18-07:00
Forum: Users
Topic: Rotate keeping quality
Replies: 6
Views: 11644

Re: Rotate keeping quality

The only way you are going to be able to do this nicely is to do each rotation from the base image, not from the previously rotated image.
by holden
2014-04-19T10:22:57-07:00
Forum: Users
Topic: Create Directory if One Does Not Exist
Replies: 2
Views: 8296

Create Directory if One Does Not Exist

It looks like IM won't create a directory, or do anything, if there is a directory name in the command. Eg. Convert image.jpg -size 800x1000 C:\home\NewFolder\image.jpg If NewFolder doesn't exist then IM acts like it does something but the rendered image or new dir doesn't exist. Is there a way to m...
by holden
2014-03-26T11:18:04-07:00
Forum: Users
Topic: creating trim marks on different sized images
Replies: 3
Views: 4681

Re: creating trim marks on different sized images

Thanks for the response, I think it may be faster for me to do this in Gimp than to figure out the code-y way :lol:
by holden
2014-03-26T10:42:41-07:00
Forum: Users
Topic: creating trim marks on different sized images
Replies: 3
Views: 4681

creating trim marks on different sized images

Hey all, I need to make several templates with trim marks in the corners. I'm not sure how to do math in IM. To start I would need this: convert -size 2400x3000 xc:white ^ -draw "line 0,0 0,100" ^ -draw "line 0,0 100,0" ^ for the first corner, then -draw "line 2300,0 2400, 0...
by holden
2014-03-01T06:19:32-07:00
Forum: Users
Topic: Im confused, what should i be downloading?
Replies: 6
Views: 5099

Re: Im confused, what should i be downloading?

Gimp (gimp.org) can open animated gifs as layers that you can delete/change the timing of then output it as an animated gif again. edit: Gimp also can show you a preview of the animation, *I think* its under filter/animation/playback, but not positive since I don't have 2.8 where I am atm. Gimp actu...
by holden
2013-11-20T11:15:39-07:00
Forum: Users
Topic: Need to find RGB differences of 2 images
Replies: 6
Views: 5657

Re: Need to find RGB differences of 2 images

Basically I'm trying to achieve the same color shift using only RGB adjustments, but I don't think it will happen, there simply is not enough control.
by holden
2013-11-20T06:03:48-07:00
Forum: Users
Topic: Need to find RGB differences of 2 images
Replies: 6
Views: 5657

Re: Need to find RGB differences of 2 images

What I did was to create a layer in Gimp above the original, tweaked the HSL of it, set it to multiply, and reduced the transparency. I've tried just manually tweaking rgb for quite some time, but I'm starting to think it isn't possible without the multiply effect. I will check the identify output w...
by holden
2013-11-19T19:59:53-07:00
Forum: Users
Topic: Need to find RGB differences of 2 images
Replies: 6
Views: 5657

Need to find RGB differences of 2 images

I don't think that title makes sense, but this is best explained visually. I have 2 images, an original and one that I made in Gimp using HSL and multiply. The problem is that the program that I am outputting in only has RGB sliders. Can IM tell me the difference in RGB values between two images? Or...
by holden
2013-11-12T09:57:14-07:00
Forum: Digital Image Processing
Topic: Are Image Filters in popular photo apps dynamic?
Replies: 7
Views: 16760

Re: Are Image Filters in popular photo apps dynamic?

There is an interesting addon for Gimp called FIL which does these effects, basically it is a series of macros.

http://registry.gimp.org/node/24639
by holden
2013-11-07T06:04:57-07:00
Forum: Users
Topic: Yet another tif to jpg conversion with wrong colors..
Replies: 7
Views: 8366

Re: Yet another tif to jpg conversion with wrong colors..

You can report it as a bug here viewforum.php?f=3

link to this thread
by holden
2013-10-23T10:38:41-07:00
Forum: Users
Topic: Optimal way to process jpegs
Replies: 7
Views: 5892

Re: Optimal way to process jpegs

I use jpeg only when I really have to. If one of your processing steps is to send the image to a printer, does lossy 8-bit jpeg give you any advantages? I doubt it. However, the difference in quality may not be noticable. I'm not sure if the machines will handle a zipped tiff, or even 16-bit images...
by holden
2013-10-23T10:05:34-07:00
Forum: Users
Topic: Optimal way to process jpegs
Replies: 7
Views: 5892

Re: Optimal way to process jpegs

Thanks fmw, I'll do some testing to see if it's worth the hassle to use a different file format- the final image is going to print and will get deleted eventually so file size may not be an issue.