Search found 38 matches

by zemlik
2014-06-05T15:12:23-07:00
Forum: PerlMagick
Topic: [Solved] Exception 420: no decode delegate for this image
Replies: 5
Views: 20562

Re: Exception 420: no decode delegate for this image format

this works #!/bin/perl use warnings; use strict; use Image::Magick; my $image=Image::Magick->new; my $giff=Image::Magick->new; my @pics=Image::Magick->new; @pics=qw/a1.png b1.png c1.png d1.png e1.png /; $giff=$image->Read($pics[0],$pics[1],$pics[2],$pics[3],$pics[4]); $giff=$image->Write("outpu...
by zemlik
2014-06-05T14:37:45-07:00
Forum: PerlMagick
Topic: [Solved] perl Image::Magick Read exception 420 on png files.
Replies: 5
Views: 16305

Re: perl Image::Magick Read exception 420 on png files.

the example at http://www.imagemagick.org/script/perl-magick.php works ok. with .gif and .png this is the same thing, which works #!/bin/perl use warnings; use strict; use Image::Magick; my $image=Image::Magick->new; my $giff=Image::Magick->new; $giff=$image->Read('a1.png','b1.png','c1.png','d1.png'...
by zemlik
2014-06-04T04:13:56-07:00
Forum: PerlMagick
Topic: [Solved] perl Image::Magick Read exception 420 on png files.
Replies: 5
Views: 16305

Re: perl Image::Magick Read exception 420 on png files.

I'm just learning perl. I am doing something similar as in previous post. I am reading file names from a .csv file and combining them all per line. There is something that I do not understand in that I can read all of the fields in the lines and put them in an array and print the names to screen but...
by zemlik
2014-05-31T06:31:45-07:00
Forum: PerlMagick
Topic: Image::Magick
Replies: 2
Views: 11207

Re: Image::Magick

hello, I should finish reading the perl book before doing this. found syntax for composite so I can combine 2 images $level[$x][$i]=Image::Magick->new; $level[$x][$i]->Read($cells[$x][$i]); } } $level[30][2]->Composite(image=>$level[30][1],compose=>'over'); $level[30][2]->Write("output4.png&quo...
by zemlik
2014-05-21T00:39:19-07:00
Forum: PerlMagick
Topic: Image::Magick
Replies: 2
Views: 11207

Image::Magick

hello, trying to understand the perl syntax I gathered some bits from the internet to make an array from a .csv file. I'd like to combine all the images that are in a row, I'm not sure if I can do them all at once as I've only combined 2 images before. composite -compose atop 1.png 2.png out.jpg wha...
by zemlik
2014-04-27T05:20:23-07:00
Forum: Users
Topic: GUI for camera
Replies: 10
Views: 12776

Re: GUI for camera

so I googled and it looks possible to read values from a CSV spreadsheet file with awk. So I just need to know if can move one image over another in one go ? I can see moving the frame over one image and then combining over another with composite How is transparency of one image's background describ...
by zemlik
2014-04-27T03:09:29-07:00
Forum: Users
Topic: Can't convert orf into jpg
Replies: 6
Views: 9779

Re: Can't convert orf into jpg

I downloaded an .ORF file and convert converts it to a .jpg
Ah! ok imagemagick uses ufraw ? ( which I have installed )
by zemlik
2014-04-27T02:45:56-07:00
Forum: Users
Topic: Can't convert orf into jpg
Replies: 6
Views: 9779

Re: Can't convert orf into jpg

ok I don't have an .orf file but it says here
http://www.imagemagick.org/script/formats.php

that imagemagick can read .orf files ?

so it should work converting orf to jpg ?
by zemlik
2014-04-27T02:33:51-07:00
Forum: Users
Topic: Can't convert orf into jpg
Replies: 6
Views: 9779

Re: Can't convert orf into jpg

if I try #!/bin/bash for i in $(ls *.jpg) do echo $i convert $i $i.orf done I get 4800bear1.jpg convert: no encode delegate for this image format '4800bear1.jpg.orf' @ warning/constitute.c/WriteImage/1215. then here http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=12366 it says co...
by zemlik
2014-04-27T00:37:06-07:00
Forum: Users
Topic: GUI for camera
Replies: 10
Views: 12776

Re: GUI for camera

I do not understand this. Can you show an example animation or one frame showing this aspect? I'll try and do something later to show. I started to try to do a zoom/loop ( http://mickiwiki.com/images/bear.mp4 ) using #!/bin/bash ((x = 4800)) ((h = 4800)) (( y = 60)) (( f = 50 )) exp=`echo "1/$...
by zemlik
2014-04-23T05:32:28-07:00
Forum: Users
Topic: GUI for camera
Replies: 10
Views: 12776

Re: GUI for camera

I am a little bit stupid I know, I said does there exist a software that will mimic a rostrum camera.?
by zemlik
2014-04-23T03:11:45-07:00
Forum: Users
Topic: GUI for camera
Replies: 10
Views: 12776

Re: GUI for camera

yes. to describe an image file of a grid has size say 7200x7200 pixels the center of the image would be north 0. south 0. east 0, west 0 and the zoom would be 0. then you would say move the center of your view to N=20;W-5 in so many frames and I want to start slowly and finish slowly. additionally w...
by zemlik
2014-04-21T12:47:53-07:00
Forum: Users
Topic: GUI for camera
Replies: 10
Views: 12776

GUI for camera

hello, The ImageMagick parts like convert ( is that called a routine ? ) seem to me to be very useful. It is possible to replace a real world rostrum camera with manipulating a flat image file in software. I do some little tests in bash but I would like to have a complete solution. Does there exist ...
by zemlik
2014-03-30T04:30:33-07:00
Forum: Users
Topic: composite
Replies: 2
Views: 4270

Re: composite

thanks
by zemlik
2014-03-30T04:05:59-07:00
Forum: Users
Topic: composite
Replies: 2
Views: 4270

composite

is there a line that will combine 2 images at different percentages, one at 25% and one at 75% ?
cheers