Search found 17 matches
- 2015-03-05T08:14:18-07:00
- Forum: Developers
- Topic: need to know file name of convert api
- Replies: 0
- Views: 5324
need to know file name of convert api
Hi, I want to use ImageMagicK convert -draw functionality (not using command line utility) for dynamic image compare by fill some color in area that should not be compared. It will be great if I get the implementation various function of convert [ options ... ] input_file output_file so that i will ...
- 2014-09-15T05:50:47-07:00
- Forum: Users
- Topic: Which file is required to execute imagemagick from VB script
- Replies: 1
- Views: 6786
Which file is required to execute imagemagick from VB script
I just want to know to execute imagemagick command from vbscript which particular file or dll it is depend upon.
Set img = CreateObject("ImageMagickObject.MagickImage.1")
Set img = CreateObject("ImageMagickObject.MagickImage.1")
- 2014-07-27T11:12:09-07:00
- Forum: Users
- Topic: How to use composite command in java
- Replies: 0
- Views: 3616
How to use composite command in java
Can somebody please help how to use
composite bag_frame1.gif bag_frame1.jpg -compose difference difference_jpeg.gif in java?
composite bag_frame1.gif bag_frame1.jpg -compose difference difference_jpeg.gif in java?
- 2014-07-18T07:26:04-07:00
- Forum: Users
- Topic: compare images with tolerance at specific regison
- Replies: 1
- Views: 3591
compare images with tolerance at specific regison
I want to automate compare images at specific region but with a user specified tolerance (ex. 20% diff is accepted).If my comparison result is within that tolerance then i will make my comparison pass otherwise fail. How to achieve that?
- 2014-07-17T20:32:26-07:00
- Forum: Users
- Topic: Getting error in imagemagick
- Replies: 7
- Views: 16561
Re: Getting error in imagemagick
Thanks i added error handle code and it works fine without showing any error. Thanks for help
- 2014-07-17T04:09:06-07:00
- Forum: Users
- Topic: Getting error in imagemagick
- Replies: 7
- Views: 16561
Re: Getting error in imagemagick
Here is error snapshot
- 2014-07-17T04:04:38-07:00
- Forum: Users
- Topic: Getting error in imagemagick
- Replies: 7
- Views: 16561
Re: Getting error in imagemagick
In command prompt i am not getting any error and vb i am still getting error but output is generated then what could be the issue
- 2014-07-13T11:56:48-07:00
- Forum: Users
- Topic: Need list of function definition implemented by ImageMagick
- Replies: 0
- Views: 3534
Need list of function definition implemented by ImageMagick
How can i get list of function and function definition implement by ImageMagick Class in ImageMagickObject.MagickImage.1 dll for vbscript?
- 2014-07-13T11:14:48-07:00
- Forum: Users
- Topic: Getting error in imagemagick
- Replies: 7
- Views: 16561
Re: Getting error in imagemagick
Tried still getting same error
- 2014-07-10T21:25:05-07:00
- Forum: Users
- Topic: Getting error in imagemagick
- Replies: 7
- Views: 16561
Getting error in imagemagick
I am running a simple string to compare screenshot but i am getting an error Error : 0x80041771 Code : 80041771 Source : ImageMagickObject.MagickImage.1 I am still getting output but my script got halted due to above error . I am running below command in vbscript Option Explicit Sub Compare_Image ...
- 2014-04-20T05:06:53-07:00
- Forum: Users
- Topic: How to execute composite command using ImageMagickObject
- Replies: 1
- Views: 4818
Re: How to execute composite command using ImageMagickObjec
You can use below code for composite
msgs = img.Composite("image1.jpg", "image2.jpg", "-compose", "difference", "compare.jpg")
msgs = img.Composite("image1.jpg", "image2.jpg", "-compose", "difference", "compare.jpg")
- 2014-04-20T00:25:37-07:00
- Forum: Users
- Topic: Dynamically add path name or image name in vbscript
- Replies: 0
- Views: 4573
Dynamically add path name or image name in vbscript
Hello, I saw vbscript command for execute imagemagick command Set objShell = wscript.createobject("wscript.shell") objShell.Exec("convert ""e:/myimages/image.png"" ""e:/myimages/image.jpg""") My question is how to add image name or path name dynamically means image name or path name is a variable ...
- 2014-04-18T09:47:47-07:00
- Forum: Users
- Topic: How to add rectangle in desired region
- Replies: 2
- Views: 5803
Re: How to add rectangle in desired region
thanks for your reply
- 2014-04-18T09:15:20-07:00
- Forum: Users
- Topic: How to add rectangle in desired region
- Replies: 2
- Views: 5803
How to add rectangle in desired region
diffbc.bmp image is created after executing below command composite bc1.bmp bc2.bmp -compose difference diffbc.bmp. My question is how to add rectangle around the desired region for giving hint which one to look at after diffbc.bmp is created instead looking at whole image as shown by red color in ...
- 2014-04-17T04:04:26-07:00
- Forum: Users
- Topic: Compare specific region in two images
- Replies: 1
- Views: 4518
Compare specific region in two images
Hello, My question what is wrong with this command to compare specific region in both the images convert pic1.bmp pic2.bmp -crop 40x30+10+10 +repage miff:- | compare pic1.bmp pic2.bmp compare.bmp When i used above command crop didn't happen and compare.bmp is created which compared the whole image ...