search for: image1

Displaying 20 results from an estimated 30 matches for "image1".

Did you mean: image
2012 Mar 20
4
Batch mode creates huge diffs, bug(s)?
...as normal user, download WinSCP (2.9 MB file), shut down machine gracefully 3. Use FOG .28/partimage / to capture the same system again, to a new image file. 4. FOG uses gzip to compress the partimage file, and we need to compare uncompressed images 1. Commands: 1. mv image1 image1.gz && mv image2 image2.gz && gunzip image1.gz && gunzip image2.gz 2. Resultant files: 1. image1 size in bytes: 17,062,442,700 2. image2 size in bytes: 16,993,256,652 3. Difference in raw size in bytes: 69,186,048 (somewhat lar...
2008 Dec 04
2
Does animated gif will work properly using RMagick?
...read from my local machine and was written in my images folder using RMagick. But the animated gif which i read was witten in my folder without animation. What should i do to write the gif image with animation. Here is my code to read and write image while uploading. image = params[:image][:blob] image1=params[:image][:blob].original_filename imgs = Magick::Image.from_blob(image.read) img = imgs.first File.open(RAILS_ROOT + "/public/images/banner/" + image1 , "wb") do |f| f.write(img.to_blob) end could anyone suggest me to solve this issue Thanks in advance, Regards, Jose...
2008 Jan 15
1
Converting Watir script to Mechanize
...cript. The watir code looks like this require ''watir'' include Watir def test ie = IE.new ie.goto(''http://cpref.gsm.com/inter.asp?r=8084'') ie.text_field(:name, ''inter_string'').set(''Potassium'') ie.button(:id, ''image1'').click ie.link(:text, /Potassium/).click ie.image(:src, ''http://cpref.gsm.com/images/plus_yellow.gif'').click ie.text_field(:name, ''inter_string'').set(''Xopenex'') ie.button(:id, ''image1'').click ie.link(:text,...
2006 Apr 23
1
file_column does not work with update model
...k if the form''s encoding has been set to ''multipart/form-data''. The form is indeed multipart. Does file_column work with update_attributes? In the server log I see message: script/server: No such file or directory - file -bi "./script/../config/../publi c/temple/image1/tmp/1145739576.129000.3652/image_xxx.JPG" but the image is there in /public/temple/image1/tmp/1145739576.129000.3652/ folder. What could be going wrong here? -- Posted via http://www.ruby-forum.com/.
2005 Aug 23
2
Using tcltk to display jpeg images
Dear R Helpers, Does anyone know how to use tcltk to display jpeg images? The manual says that one must use Tk_PhotoCreateImageFormat to register the jpeg image handler. The "ActiveTcl User Guide" (http://support.serv.ch/lang/tcl/img/doc/img-jpeg.html) says:- "The package img::jpeg is a sub-package of Img. It can be loaded as a part of the complete Img support, via package require
2009 Apr 16
3
Presenting R Results in Webpages
...written text and put it on an simple webpage. That is, it would look something like the following: |---------------------------------------------| | Title | | | | |--------| |--------| Some basic txt | | | Image1 | | Image2 | ... | | |________| |________| ... | |_____________________________________________| R comes in because I have R scripts creating the images I would like to import. There will be 14-18 pages of these type of slides, but the key is we will be producin...
2008 Jul 25
4
Creating a Bootable Image file
...file and formatted the partition using the dd and mkfs.ext3 commands: dd if=/dev/zero if=generic.img bs=1024k count=10000 mkfs.ext3 -t ext3 generic.img >From a working image that I shut down I then copied the directories into the file: mount -o loop generic.img /mnt/generic cp -ax /mnt/image1/{root,dev,var,etc,usr,bin,sbin,lib} /mnt/generic mkdir /mnt/generic/{proc,sys,home,tmp} I copied image1s config file and called it generic and then tried to start it up but I get a message that the virDomainCreate() failed POST operations failed: (xend.err Error creating domain:bootloader didn...
2003 Jul 31
2
help with graphics
I'd like to use lattice to make graphics under conditional structure like : if (TRUE) { barchart(....) dev.print(png, file = "image1.png", width = 600) } but there's nothing in the output file. It seems that it's too long to print graphic into the graphical output and the saved file is a blank picture. it works if I do that without the conditionnal structure. it doesn't work if I source a batch file can you help...
2005 Apr 22
1
Newbie Question
...have installed Red Hat Enterprise 3 on one Intel-32 bit machine. I have installed all systemimager/systeminstaller/flamethrower RPMS that machine. I would like to install OS through PXE boot on another Athlon machine. When I execute mkssimage for creating a image master # mksiimage --Add --name image1 --path /var/lib/systemimager/images/image1 --filename /root/rpmlist --location /tftpboot/rpm --arch i686 Warning: Missing required packages, continuing systemconfigurator at /usr/bin/mksiimage line 164 Couldn't find file for PYXML. at /usr/lib/SystemInstaller/PackageBest.pm line 110...
2013 Jun 20
10
Two identical copies of an image mounted result in changes to both images if only one is modified
Hi, I''ve observed a rather strange behaviour while trying to mount two identical copies of the same image to different mount points. Each modification to one image is also performed in the second one. Example: dd if=/dev/sda? of=image1 bs=1M cp image1 image2 mount -o loop image1 m1 mount -o loop image2 m2 touch m2/hello ls -la m1 //will now also include a file calles "hello" Is this behaviour intentional and known or should I create a bug-report? I''ve deleted quite a bunch of files on my production system be...
2010 Aug 10
2
p-values with pvclust
Hi, if you look at the first image (Image1) you see that there are 2 main clusters 7 and 8 I wanted to use pvclust to calculate a p-value whether these clusters are due to chance or statistically significant. Unfortunately pvclust does not provide a p-value for the first brunch (7 and 8). So I added a row to my matrix which is very differ...
2012 Oct 22
2
Assigning values to several consecutives rows in a sequence while leaving some empty
...value) while leaving some of the rows empty (when a certain condition is not fulfilled). My data are locations (xy coordinates), the date/time at which they were measured, and the time span between measures. Somehow simplified, they look like this: <http://r.789695.n4.nabble.com/file/n4646956/image1.png> I'd like to assign a value to every sequence of locations that are measured within a time span of 4 hours, and make my data look like this: <http://r.789695.n4.nabble.com/file/n4646956/image2.png> I've tried several algorithms with a loop "for" plus "ifelse...
2005 Oct 14
0
ImageMagick helper
...;'ve set up my controller as such: class ProfileController < ApplicationController # ..SNIP.. class Photo < ApplicationController imagemagick_for ''/home/howardroberts/documents/pics/'' end end Then in views/profile/photo.rhtml I put: <%= imagemagick_tag ''image1.jpg'', ''resize(100x100)'' %> This produces the error: showing /app/views/profile/photo.rhtml where line #1 raised: undefined method `url_for_imagemagick'' for #<ProfileController:0xb7828b14> Extracted source (around line #1): 1: <%= imagemagick_tag ...
2005 Jan 22
9
Dragging images across the canvas
Hi wxRuby Gurus, I''m trying to write a sample program which allows me to drag an image (by left_mouse_button down) across the canvas. I got it to work ... well, sort of. The problem is I can drag it only by clicking on the left top corner of the image and nowhere else. Besides, the dragging is not very smooth. How can I make it better? I am using wxRuby 0.6.0 on Win XP (Home) and
2006 Jan 13
21
anyone interested in an Effect.Slideshow?
...each image up before moving on. I could also have a ''randomize'' option, when set to true it would pull the images randomly. It would cross-fade them using Effect.Fade and Effect.Appear. Syntax would be something like: new Effect.Slideshow(''div_id'', [''image1.jpg'', ''image2.jpg''...], { delay: #.# (in seconds, with a default of 10 seconds), randomize: true/false }); The script would create the img tag inside of the div (it''d actually create 2, 1 hidden and 1 showing, then fade one out while the other fades in). What d...
2016 Oct 03
0
[Bug 70354] [NVE6, NVE7] HUB_INIT timeout on graph init, blob fw doesn't help
...ttp://www.merlinone.com/> -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/nouveau/attachments/20161003/faf63be0/attachment-0001.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: Image1 Type: image/png Size: 8090 bytes Desc: not available URL: <https://lists.freedesktop.org/archives/nouveau/attachments/20161003/faf63be0/attachment-0001.png>
2006 Jul 02
1
url_for_file_column not working
Hi All I am able to upload images but when I add the code to my view.rhtml <%= image_tag url_for_file_column("myimage", "image1", "medium" ) %> I dont get the image displayed; the reason being some extra numbers are added to the image file name. For example when I loaded intro_image.jpeg; it has the right file name in the database table. When I check the view source on my displayed page, I see that it...
2010 Aug 10
0
xenconsole: Could not read tty from store: No such file or directory
...# bn VMBuilder kernel = ''/boot/vmlinuz-2.6.27-7-server'' ramdisk = ''/boot/initrd.img-2.6.27-7-server'' memory = 512 vcpus = 2 root = ''/dev/sda1 ro'' disk = [ ''file:/opt/vm/appscale1/root.img,sda1,w'', ] name = ''appscale-image1'' dhcp    = ''dhcp'' vif     = [ ''mac=00:16:3B:00:00:01'' ] on_poweroff = ''destroy'' on_reboot   = ''restart'' on_crash    = ''restart'' extra = ''console=hvc0 xencons=tty'' ----------------...
2010 Apr 02
1
compare two fingerprint images
Hello I wanted to compare two fingerprint images. How do you do with R?. Is there a role for cross-correlation of images? Thanks -- ========================================================= Juan Antonio Gil Pascual Prof. Titular de M?todos de Investigaci?n en Educaci?n correo: jgil at edu.uned.es web: www.uned.es/personal/jgil U.N.E.D. Fac. de Educaci?n Dpto. MIDE I P? Senda del Rey,7 desp.
2002 Jul 12
0
*****SPAM***** Essentials for E-Commerce : adv.
...("http://www.essencomp.com/images/consultant/consultant.asp"); </script> <BODY> <TABLE align=3Dcenter border=3D0 cellPadding=3D0 cellSpacing=3D0 width=3D737> <TR> <TD><IMG alt=3D"" src=3D"http://www.essencomp.com/images/consultant/image1.jpg"></TD></TR> <TR> <TD><IMG alt=3D"" src=3D"http://www.essencomp.com/images/consultant/image2.jpg"></TD></TR> <TR> <TD><IMG alt=3D"" src=3D"http://www.essencomp.com/images...