Search found 17 matches

by manmanda
2015-03-05T08:14:18-07:00
Forum: Developers
Topic: need to know file name of convert api
Replies: 0
Views: 4907

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 ...
by manmanda
2014-09-15T05:50:47-07:00
Forum: Users
Topic: Which file is required to execute imagemagick from VB script
Replies: 1
Views: 5009

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")
by manmanda
2014-07-27T11:12:09-07:00
Forum: Users
Topic: How to use composite command in java
Replies: 0
Views: 3240

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?
by manmanda
2014-07-18T07:26:04-07:00
Forum: Users
Topic: compare images with tolerance at specific regison
Replies: 1
Views: 3131

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?
by manmanda
2014-07-17T20:32:26-07:00
Forum: Users
Topic: Getting error in imagemagick
Replies: 7
Views: 14352

Re: Getting error in imagemagick

Thanks i added error handle code and it works fine without showing any error. Thanks for help
by manmanda
2014-07-17T04:09:06-07:00
Forum: Users
Topic: Getting error in imagemagick
Replies: 7
Views: 14352

Re: Getting error in imagemagick

Here is error snapshot
Image
by manmanda
2014-07-17T04:04:38-07:00
Forum: Users
Topic: Getting error in imagemagick
Replies: 7
Views: 14352

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
by manmanda
2014-07-13T11:56:48-07:00
Forum: Users
Topic: Need list of function definition implemented by ImageMagick
Replies: 0
Views: 3132

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?
by manmanda
2014-07-13T11:14:48-07:00
Forum: Users
Topic: Getting error in imagemagick
Replies: 7
Views: 14352

Re: Getting error in imagemagick

Tried still getting same error :(
by manmanda
2014-07-10T21:25:05-07:00
Forum: Users
Topic: Getting error in imagemagick
Replies: 7
Views: 14352

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() ...
by manmanda
2014-04-20T05:06:53-07:00
Forum: Users
Topic: How to execute composite command using ImageMagickObject
Replies: 1
Views: 4402

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")
by manmanda
2014-04-20T00:25:37-07:00
Forum: Users
Topic: Dynamically add path name or image name in vbscript
Replies: 0
Views: 4220

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 nam...
by manmanda
2014-04-18T09:47:47-07:00
Forum: Users
Topic: How to add rectangle in desired region
Replies: 2
Views: 5216

Re: How to add rectangle in desired region

thanks for your reply
by manmanda
2014-04-18T09:15:20-07:00
Forum: Users
Topic: How to add rectangle in desired region
Replies: 2
Views: 5216

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 b...
by manmanda
2014-04-17T04:04:26-07:00
Forum: Users
Topic: Compare specific region in two images
Replies: 1
Views: 4025

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 n...