Search found 23 matches
- 2016-05-02T13:00:44-07:00
- Forum: Fred's Scripts
- Topic: Scripts
- Replies: 9
- Views: 130539
Re: Scripts
@Everyone I'm still working on the scripts unfortunately I can't get them done as fast as I wanted as of almost a few days after I've spoken with Fred I ended up with severe vision problems my sight goes from clear to blur and well I should of asked my wife sooner to give a update to the situation ...
- 2016-01-25T22:06:54-07:00
- Forum: Users
- Topic: Hopefully simple question
- Replies: 8
- Views: 11296
Re: Hopefully simple question
@snibgo
Ironically I had this in my bookmarks might be able to help out on this case.
http://fits.gsfc.nasa.gov/fits_samples.html
has some sample images they read like text so I'm assuming conversion might not be that bad to do... as for actual converters this site also has some.
PandoraBox
Ironically I had this in my bookmarks might be able to help out on this case.
http://fits.gsfc.nasa.gov/fits_samples.html
has some sample images they read like text so I'm assuming conversion might not be that bad to do... as for actual converters this site also has some.
PandoraBox
- 2016-01-21T08:25:56-07:00
- Forum: Users
- Topic: Changing the leading space in image
- Replies: 17
- Views: 21119
Re: Changing the leading space in image
Simple,Is there any formula that list of all the image's pixel color values with their corresponding coordinates ?. The formula you show me is just for one column only.
convert image.ext image.txt
PandoraBox
- 2016-01-18T13:04:25-07:00
- Forum: Users
- Topic: Where can I found previous installers?
- Replies: 9
- Views: 20423
Re: Where can I found previous installers?
Try this.
https://web.archive.org/web/*/http://ww ... /download/*
(replace the http://www.imagemagick.org/download/ with where ever the location was)
ImageMagick is mostly stored on archive.org it's not perfect but you might get lucky and find what your looking for.
PandoraBox
https://web.archive.org/web/*/http://ww ... /download/*
(replace the http://www.imagemagick.org/download/ with where ever the location was)
ImageMagick is mostly stored on archive.org it's not perfect but you might get lucky and find what your looking for.
PandoraBox
- 2016-01-04T10:58:36-07:00
- Forum: Fred's Scripts
- Topic: Scripts
- Replies: 9
- Views: 130539
Re: Scripts
No problem sent you a e-mail at the address you've given me.
PandoraBox
PandoraBox
- 2016-01-04T09:47:16-07:00
- Forum: Fred's Scripts
- Topic: Scripts
- Replies: 9
- Views: 130539
Scripts
Didn't know if here or pm you directly would be the best road. Just wanted to say I'm almost done figuring out a way to convert most of your scripts into dos based batch files using simple tools or just basic dos commands to make them user friendly (Obviously for personal use as I am always intrigue ...
- 2015-12-06T06:47:04-07:00
- Forum: Users
- Topic: Optimizing Imagemagick convert & composite code
- Replies: 14
- Views: 42905
Re: Optimizing Imagemagick convert & composite code
Thanks fred, but like you say always if people post the version and operating system saves a huge amount of work however I can't complain when I see a comparison code for different platforms..
Thanks again.
Thanks again.
- 2015-12-05T17:23:50-07:00
- Forum: Users
- Topic: Optimizing Imagemagick convert & composite code
- Replies: 14
- Views: 42905
Re: Optimizing Imagemagick convert & composite code
If your under windows something like this in a batch file works well also. for /F "tokens=*" %%A in (wordlist.txt) do call :process %%A goto thenextstep :process set VAR1=%1 convert -size 100x100 -background white -font arial.ttf -fill black label:"%VAR1%" -trim +repage -depth 8 %VAR1%.jpg composite ...
- 2015-11-04T15:38:06-07:00
- Forum: Users
- Topic: Fixing pixel aspect ratio from NTSC footage
- Replies: 8
- Views: 12054
Re: Fixing pixel aspect ratio from NTSC footage
Pixels you must mean pictures xD From a 16:9 to a 4:3 you can either crop your image to get your 4:3 image value or calculate and center your image on a black square of a 4:3 ratio. A quick search with google gives this topic. http://www.imagemagick.org/discourse-server/viewtopic.php?t=23192 Best of ...
- 2015-07-27T18:14:52-07:00
- Forum: Users
- Topic: Adding 2 images and looping values?
- Replies: 3
- Views: 6277
Adding 2 images and looping values?
Hello everyone, just a quick question as I'm working on a GUI for Imageagick in python using PAGE and I'm working on some plug-in effects (The tool is going to be a total freebie) my question is can something like this be done : pixel 1 on image 1 and pixel 1 on image 2. 200,200,200 image 1 pixel 1 ...
- 2015-05-19T20:42:08-07:00
- Forum: Users
- Topic: How to add 2 same size images together and convert to black
- Replies: 1
- Views: 4644
How to add 2 same size images together and convert to black
What's the best way to merge 2 images that are mostly white but with only one color (that is not specific) and adding a second image that has a different color on top of it replacing the white parts and not touching the other colors (None of theses pixels will ever overlap so there is no issue there ...
- 2015-05-08T17:18:19-07:00
- Forum: Users
- Topic: How does one batch substitute colors based on criteria?
- Replies: 4
- Views: 8155
Re: How does one batch substitute colors based on criteria?
The posterize command worked great that was exactly what I was looking for. The reason why I needed those primary colors is that I am using a tool called PaperBa(c)k http://www.ollydbg.de/Paperbak/index.html and I was wishing to modify this code to work with colored bar codes the issue was no ...
- 2015-05-08T15:19:33-07:00
- Forum: Users
- Topic: How does one batch substitute colors based on criteria?
- Replies: 4
- Views: 8155
How does one batch substitute colors based on criteria?
I'm stumped on this one as I really hate doing a for loop in dos to check all 16 million colors on a image. What I am trying to do is for example if I have the color 237,23,23 I want to have 255,0,0. The common rule is that if the color is 127 or more set to 255 if not set to 0. To end up with only ...
- 2015-03-24T12:57:05-07:00
- Forum: Users
- Topic: How can I make a white grid.
- Replies: 5
- Views: 9739
Re: How can I make a white grid.
Sorry for the late post got a power surge that knocked my whole system down, now I'm back up and running. I'll definitely go through your batch files as I also myself am a dos freak and learn some more IM tricks from your files. The only PITA with good old dos is that you need lots of escapes to use ...
- 2015-03-21T11:57:25-07:00
- Forum: Users
- Topic: How can I make a white grid.
- Replies: 5
- Views: 9739
Re: How can I make a white grid.
This is more than perfect just tried the results inside of Inkscape works like a charm and flawlessly. I seriously have to go through reading the source code for ImageMagick because really I feel ashamed of asking such questions. Thanks again well if your ever in Montreal,Qc. area I'll buy you a ...