Search found 66 matches

by Werty
2012-02-29T06:55:53-07:00
Forum: Windows COM+ & Visual Basic
Topic: (VB6) Deskew with Autocrop
Replies: 2
Views: 17273

Re: (VB6) Deskew with Autocrop

You need each command/option in their own quotes, while I havent tried using the -set option I believe it should look something like this... IM2 = IMimage2.Convert("c:\test\in.tif", "-set","option:deskew:auto-crop=40", "c:\test\out.tif") ...if indeed the "...
by Werty
2012-02-13T09:12:30-07:00
Forum: Bugs
Topic: Possible bug w/ "clipboard:"
Replies: 2
Views: 7616

Re: Possible bug w/ "clipboard:"

Are you sure you are feeding it image data and not just a Handle to the data ? Try... Convert rose: clipboard: then... Convert clipboard: image.jpg ^this works for me, having no image data on the clipboard gives me the same error as yours, so it seems you arent getting the correct data on your clipb...
by Werty
2012-02-13T08:54:19-07:00
Forum: Developers
Topic: How to capture screen
Replies: 4
Views: 13603

Re: How to capture screen

x: is available for *nix only, if you are running windows then there is no such option, you'd have to go with one of the API's. (afaik, please correct if wrong)
by Werty
2011-08-08T08:43:12-07:00
Forum: Developers
Topic: Learning to compile ImageMagickObject.dll, where to start ?
Replies: 0
Views: 3834

Learning to compile ImageMagickObject.dll, where to start ?

Hi. Where should I start looking to learn how to compile a COM+ ImageMagickObject.dll ? Scenario: I have no experience with C++, only glanced at some code occasionally, I do have experience with other programming languages though. I would like to make the ImageMagickObject.dll as small as possible, ...
by Werty
2011-05-17T11:12:44-07:00
Forum: Users
Topic: getting the edges of an image
Replies: 30
Views: 79938

Re: getting the edges of an image

Works on my Win7 32-bit with IM 6.6.3.0.
by Werty
2011-01-02T18:00:06-07:00
Forum: Digital Image Processing
Topic: OCR
Replies: 2
Views: 22858

Re: OCR

What do you need to accomplish ? What platform are we talking about ? If for windows, and if you have Microsoft Office, then you already have MODI. http://www.codeproject.com/KB/office/modi.aspx (problem with this is, that if it is for distribution, all people may not have MS Office) Then there's te...
by Werty
2010-12-15T16:56:24-07:00
Forum: Users
Topic: Inline/OnTheFly convert ?
Replies: 14
Views: 29211

Re: Inline/OnTheFly convert ?

Ah, well, found the answer :( http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10757&p=34128&hilit=win%3A#p34128 ImageMagick does not permit native Window screen captures, it only captures a screen under Windows if you are running an X11 server. I still need my original pr...
by Werty
2010-12-12T01:50:03-07:00
Forum: Users
Topic: Inline/OnTheFly convert ?
Replies: 14
Views: 29211

Re: Inline/OnTheFly convert ?

anthony wrote:
So where does it say that?
It says it here, same link as I posted above.

http://www.imagemagick.org/script/forma ... dmrabmr645
(Scroll down to pseudo image formats)
by Werty
2010-12-11T20:29:50-07:00
Forum: Users
Topic: Inline/OnTheFly convert ?
Replies: 14
Views: 29211

Re: Inline/OnTheFly convert ?

win: is a output only special format, like x: and show: (show calls "display" as a background process, so the main command can continue). In what way does win: not work? In the description it says, WIN RW "Select image from or display image to your computer screen", so unless th...
by Werty
2010-12-11T03:50:49-07:00
Forum: Users
Topic: Inline/OnTheFly convert ?
Replies: 14
Views: 29211

Re: Inline/OnTheFly convert ?

Simply listing it with the others at http://www.imagemagick.org/Usage/files/#special_formats would have let me known it existed. It's listed here... http://www.imagemagick.org/script/formats.php?ImageMagick=jr89cftt2hcmes7gdmrabmr645 (Scroll down to pseudo image formats) I would love to get "w...
by Werty
2010-12-10T16:18:07-07:00
Forum: Users
Topic: Inline/OnTheFly convert ?
Replies: 14
Views: 29211

Re: Inline/OnTheFly convert ?

Yes, using the clipboard is awesome, I found out when trying to find a way to make image blobs work, which I couldnt, so I use clipboard as a workaround. Please read "our" threads about blobs using the imagemagickObject.dll in the COM API section, link here... http://www.imagemagick.org/di...
by Werty
2010-12-10T14:00:26-07:00
Forum: Users
Topic: Inline/OnTheFly convert ?
Replies: 14
Views: 29211

Inline/OnTheFly convert ?

[windows user] How do I go about changing the format of the input file "on the fly" before outputting it ? I need something like this... Convert image.bmp clipboard: ...where the clipboard content should be in 16bit PGM format. Saving to harddisk first is a no go, that's exactly what I'm t...
by Werty
2010-11-26T19:18:26-07:00
Forum: Windows COM+ & Visual Basic
Topic: Can I Use a Binary Stream as input for IM.convert?
Replies: 7
Views: 31920

Re: Can I Use a Binary Stream as input for IM.convert?

Bumping also.

We REALLY need a SIMPLE example on how to use blobs, and not just something that outputs a 1x1 pixel image :p
by Werty
2010-08-06T15:24:19-07:00
Forum: Users
Topic: How do I simplify this mess ? (merging/stacking many images)
Replies: 16
Views: 32671

Re: How do I simplify this mess ? (merging/stacking many ima

That's about what I have tried, and it does something that might just be the right thing, but the color thing is still missing, when I try to add anything about colors like -highlight-color it crashes. I'll look around some more, just started learning IM, gonna read up on the layers and mpr/clones. ...
by Werty
2010-08-06T14:37:14-07:00
Forum: Users
Topic: How do I simplify this mess ? (merging/stacking many images)
Replies: 16
Views: 32671

Re: How do I simplify this mess ? (merging/stacking many ima

As mentioned, I already accomplished what I want, as you also can see in the pic I may have posted while you wrote. What I'm looking for is to get my code refined so it doesnt use so much disk, a more refined way of doing it, with less disk activity. Here's the commands from my first post that alrea...