Muckels Tagebuch

aus dem Leben geschrieben

 

Artikel der Kategorie Betriebssysteme

 :: 
drucken PDF-Dokument email Nachrichtenfeed bearbeiten
Verfasst von Muckel.

Installations DVD des EeePC auf USB-Stick und davon installieren?

Privat nutze ich eigentlich nur noch Ubuntu und komme damit auch ziemlich gut zurecht. Manchmal gibt es aber Situationen, bei denen man doch wieder das Windows benötigt, um so zum Beispiel Bekannten etwas zu zeigen.

Da ich auch mein Ubuntu neu aufspielen möchte, will ich das nun auch mit dem mitgelieferten Windows meines EeePC machen. Leider habe ich kein externes DVD-Laufwerk. Daher suche ich im Moment nach einer Lösung, wie ich das trotzdem aufspielen kann.

Meine Idee ist:

  • ISO-Image der DVD erstellen
  • USB-Stick formatieren
  • ISO-Image mit einem Werkzeug (wie z.B. UNetbootin) aufspielen
  • vom USB-Stick booten
  • und dann normal installieren

Leider ist mir völlig unbekannt, ob dies Funktioniert, weshalb ich in zwei Foren nachgefragt habe und nun hoffe, das mir jemand helfen kann.

Mit diesem Artikel werde ich aber darüber berichten und den Artikel somit ergänzen.

Daten: Verfasst von Muckel, am 20. Juni 2011, um 8:53 Uhr.
Abgelegt unter: Betriebssysteme, Informations Technik, Microsoft Windows
Schlagworte: 
Verwendung:  drucken  PDF-Dokument  email  Nachrichtenfeed  bearbeiten  dauerhafter LinkTrackback
Kommentare: Es wurde noch kein Kommentar geschrieben.
drucken PDF-Dokument email Nachrichtenfeed bearbeiten
Verfasst von Muckel.

Grafiken umwandeln mit convert

Heute habe ich mal wieder mit der shell / Konsole meines Betriebssystems Ubuntu gearbeitet, da man darüber manches vereinfachen kann. Gestern habe ich Arztberichte eingescannt. In meinem Ordner mit den Berichtet habe ich nun gute 60 Dateien.

Eine Datei war eine PDF-Datei mit 5 Seiten, die ich auch als Grafik umwandeln wollte, damit ich anschließend alle Dateien automatisiert bearbeiten kann. Dank des Forum von Ubuntuusers.de habe ich auch Lösungen gefunden. Um eine PDF-Datei in Grafiken um zu wandeln kann man folgenden Befehl verwenden:

convert -density 300x300 Bericht.pdf Bericht.jpg

Damit habe ich aus der PDF-Datei einzelne Grafiken erhalten. Anstelle von *.jpg könnte man auch *.png, *.gif usw. benutzten.

Nun hatte ich ein Verzeichnis mit 68 Grafikdateien im *.jpg und *.png Format. Jene wollte ich nun in einer PDF-Datei zusammen führen. Dies klappt ebenfalls mit dem Befehl convert:

convert *.* Test.pdf

Das Wort convert leitet den Befehl ein. Das *.* ist für die Dateien in dem Verzeichnis gedacht. Anstelle von dem könnte man auch *.jpg, *.png, *.gif usw. nehmen, was dann aber nur die jeweilige Dateiart berücksichtigt. Da ich nun aber beide Formate brauchte, musste ich jenes nehmen. Am Ende von diesem “Einzeiler” ist der Dateiname mit .pdf zu schreiben.

Bei meinen Dateien habe ich ein Verzeichnis, das sich “krankenakte” nennt. In diesem Verzeichnis ist u.a. das Verzeichnis “Bilder”, in dem sich die vielen Grafiken befinden. Die PDF-Datei in der dann alle Berichte stehen, möchte ich aber darüber im Verzeichnis haben. Das geht mit dem “Grundbefehl” von oben auch:

convert /home/USER/Dokumente/PFAD/krankenakte/Bilder/*.* /home/USER/Dokumente/PFAD/krankenakte/2010-09-17-krankenakte.pdf

Wie man sehen kann, habe ich hier den Pfad mit angegeben. Dabei sollte man das USER durch den verwendeten Usernamen ersetzten und den PFAD mit der eigenen Ordnerstruktur. Das Verzeichnis Dokumente habe ich stehen lassen, da es voreingerichtet wird bei Ubuntu.

Auch kann man seine Grafiken zu einem anderen Format umändern:

convert *.* Dateiname.png

Dabei ist zu beachten, dass an dem Dateinamen eine Nummer folgt. Das zählen fängt leider bei 0 an, was ich persönlich nicht so gut finde, aber das ist wahrscheinlich Geschmackssache.

Selbst bin ich nun auf der Suche, wie man die Grafiken konvertieren kann, die Datei aber den Namen der Ursprungsdatei behält. Grund dafür ist, dass ich bei meinen Fotografien oder auch Arztberichten immer einen “Sinnvollen” Dateinamen gewählt habe. So zum Beispiel:

  • Fotografien der Tschechien-Fahrt 2008
    • 2008_5_Tschechien_01.png
    • 2008_5_Tschechien_sw_01.png
  • 2009-01-02-Winter-in-SZ-01.png
  • 2007-08-25-Arztname-S1.png

Bei den ersten beiden handelt es sich mehr oder weniger um die gleichen Aufnahmen. Sie unterscheiden sich lediglich dadurch, dass die einen in Farbe sind und die anderen in Schwarz-Weiß. Zu dem war das im Jahr 2008 die 5. Serie, die ich Fotografiert habe. Seit dem ich meine Digitale Spiegelreflexkamera habe und die Bilder nicht mehr einscannen muss, bin ich dazu übergegangen das Schema zu verfeinern: Nun besteht es aus: Jahr-Monat-Tag-Aktion-Nr. Durch dieses Schema habe ich den Vorteil, dass die Daten chronologisch sortiert sind und ich zudem gleich lesen kann, von was für einer “Aktion” sie sind. Bei der Krankenakte habe ich das auch beibehalten, denn so weiß ich immer in der richtigen Reihenfolge, was wann war und durch den Dateinamen kann ich auch gleich die Ärzte oder Klinik sehen.

Größe der Bilder in einem Verzeichnis ändern ist mit einer Schleife möglich.

for i in *.jpg; do convert -resize 20% $i `basename $i .jpg`_thumb.jpg; done

In diesem Beispiel werden alle Dateien mit der Endung .jpg berücksichtigt. Die neue Datei bekommt im Namen den Zusatz _thumb.
Graustufen erstteln ist auch mit convert möglich.

1
convert -colorspace Gray *.png *.png

Auch monochrome ist mit convert möglich:

1
convert -monochrome *.png *.png

Tipps und Tricks auf anderen Webseiten

Zu den meisten “Konsolenbefehlen” gibt es auch eine sogenannte man-page. Jene gibt Auskunft über die Parameter und Möglichkeiten zu diesem Befehl. Für convert ist folgendes enthalten:

SYNOPSIS
       convert [input-options] input-file [output-options] output-file
 
       For more information about the convert command, point your  browser  to
       file:///usr/share/doc/imagemagick/www/convert.html                   or
       http://www.imagemagick.org/script/convert.php.
 
DESCRIPTION
       Image Settings:
         -adjoin              join images into a single multi-image file
         -affine matrix       affine transform matrix
         -antialias           remove pixel-aliasing
         -authenticate value  decrypt image with this password
         -background color    background color
         -bias value          add bias when convolving an image
         -black-point-compensation
                              use black point compensation
         -blue-primary point  chromaticity blue primary point
         -bordercolor color   border color
         -caption string      assign a caption to an image
         -cdl filename        color correct with a color decision list
         -channel type        apply option to select image channels
         -colors value        preferred number of colors in the image
         -colorspace type     alternate image colorspace
         -comment string      annotate image with comment
         -compose operator    set image composite operator
         -compress type       type of pixel compression when writing the image
         -decipher filename   convert cipher pixels to plain pixels
         -define format:option
                              define one or more image format options
         -delay value         display the next image after pausing
         -density geometry    horizontal and vertical density of the image
         -depth value         image depth
         -display server      get image or font from this X server
         -dispose method      layer disposal method
         -dither method       apply error diffusion to image
         -encipher filename   convert plain pixels to cipher pixels
         -encoding type       text encoding type
         -endian type         endianness (MSB or LSB) of the image
         -family name         render text with this font family
         -fill color          color to use when filling a graphic primitive
         -filter type         use this filter when resizing an image
         -flatten             flatten a sequence of images
         -font name           render text with this font
         -format "string"     output formatted image characteristics
         -fuzz distance       colors within this distance are considered equal
         -gravity type        horizontal and vertical text placement
         -green-primary point chromaticity green primary point
         -intent type         type of rendering intent when managing the image
       color
         -interlace type      type of image interlacing scheme
         -interpolate method  pixel color interpolation method
         -label string        assign a label to an image
         -limit type value    pixel cache resource limit
         -loop  iterations      add Netscape loop extension to your GIF anima‐
       tion
         -mask filename       associate a mask with the image
         -matte               store matte channel if the image has one
         -mattecolor color    frame color
         -monitor             monitor progress
         -orient type         image orientation
         -origin geometry     image origin
         -page geometry       size and location of an image canvas (setting)
         -ping                efficiently determine image attributes
         -pointsize value     font point size
         -preview type        image preview type
         -quality value       JPEG/MIFF/PNG compression level
         -quiet               suppress all warning messages
         -red-primary point   chromaticity red primary point
         -regard-warnings     pay attention to warning messages
         -sampling-factor geometry
                              horizontal and vertical sampling factor
         -scene value         image scene number
         -seed value          seed a new sequence of pseudo-random numbers
         -size geometry       width and height of image
         -stretch type        render text with this font stretch
         -stroke color        graphic primitive stroke color
         -strokewidth value   graphic primitive stroke width
         -style type          render text with this font style
         -support factor      resize support: > 1.0 is blurry, < 1.0 is sharp
         -texture filename    name of texture to tile  onto  the  image  back‐
       ground
         -tile-offset geometry
                              tile offset
         -treedepth value     color tree depth
         -transparent-color color
                              transparent color
         -undercolor color    annotation bounding box color
         -units type          the units of image resolution
         -verbose             print detailed information about the image
         -view                FlashPix viewing transforms
         -virtual-pixel method
                              virtual pixel access method
         -weight type         render text with this font weight
         -white-point point   chromaticity white point
 
       Image Operators:
         -adaptive-blur geometry
                              adaptively  blur  pixels;  decrease  effect near
       edges
         -adaptive-resize geometry
                              adaptively resize image with data dependent tri‐
       angulation
         -adaptive-sharpen geometry
                              adaptively  sharpen pixels; increase effect near
       edges
         -annotate geometry text
                              annotate the image with text
         -auto-orient         automatically orient image
         -black-threshold value
                              force all pixels below the threshold into black
         -blur geometry       reduce image noise and reduce detail levels
         -border geometry     surround image with a border of color
         -charcoal radius     simulate a charcoal drawing
         -chop geometry       remove pixels from the image interior
         -clip                clip along the first path from the 8BIM profile
         -clip-mask filename  associate a clip mask with the image
         -clip-path id        clip along a named path from the 8BIM profile
         -colorize value      colorize the image with the fill color
         -contrast            enhance or reduce the image contrast
         -contrast-stretch geometry
                              improve contrast by `stretching'  the  intensity
       range
         -convolve coefficients
                              apply a convolution kernel to the image
         -cycle amount        cycle the image colormap
         -despeckle           reduce the speckles within an image
         -draw string         annotate the image with a graphic primitive
         -edge radius         apply a filter to detect edges in the image
         -emboss radius       emboss an image
         -enhance             apply a digital filter to enhance a noisy image
         -equalize            perform histogram equalization to an image
         -evaluate operator value
                              evaluate  an  arithmetic, relational, or logical
       expression
         -extent geometry     set the image size
         -extract geometry    extract area from image
         -fft                 implements the discrete Fourier transform (DFT)
         -flip                flip image vertically
         -floodfill geometry color
                              floodfill the image with color
         -flop                flop image horizontally
         -frame geometry      surround image with an ornamental border
         -function name       apply a function to the image
         -gamma value         level of gamma correction
         -gaussian-blur geometry
                              reduce image noise and reduce detail levels
         -geometry geometry   preferred size or location of the image
         -identify            identify the format and characteristics  of  the
       image
         -ift                  implements  the inverse discrete Fourier trans‐
       form (DFT)
         -implode amount      implode image pixels about the center
         -lat geometry        local adaptive thresholding
         -layers method       optimize or compare image layers
         -level value         adjust the level of image contrast
         -linear-stretch geometry
                              improve contrast by `stretching with saturation'
       the intensity range
         -median radius       apply a median filter to the image
         -modulate value      vary the brightness, saturation, and hue
         -monochrome          transform image to black and white
         -motion-blur geometry
                              simulate motion blur
         -negate              replace every pixel with its complementary color
         -noise radius        add or reduce noise in an image
         -normalize           transform image to span the full range of colors
         -opaque color        change this color to the fill color
         -ordered-dither NxN
                              add  a  noise pattern to the image with specific
       amplitudes
         -paint radius        simulate an oil painting
         -polaroid angle      simulate a Polaroid picture
         -posterize levels    reduce the image to a limited  number  of  color
       levels
         -print string        interpret string and print to console
         -profile filename    add, delete, or apply an image profile
         -quantize colorspace reduce colors in this colorspace
         -radial-blur angle   radial blur the image
         -raise  value          lighten/darken  image  edges  to  create a 3-D
       effect
         -random-threshold low,high
                              random threshold the image
         -recolor matrix      translate, scale, shear, or rotate image colors
         -region geometry     apply options to a portion of the image
         -render              render vector graphics
         -repage geometry     size and location of an image canvas
         -resample geometry   change the resolution of an image
         -resize geometry     resize the image
         -roll geometry       roll an image vertically or horizontally
         -rotate degrees      apply Paeth rotation to the image
         -sample geometry     scale image with pixel sampling
         -scale geometry      scale the image
         -segment values      segment an image
         -selective-blur geometry
                              selectively  blur  pixels  within   a   contrast
       threshold
         -sepia-tone threshold
                              simulate a sepia-toned photo
         -set property value  set an image property
         -shade degrees       shade the image using a distant light source
         -shadow geometry     simulate an image shadow
         -sharpen geometry    sharpen the image
         -shave geometry      shave pixels from the image edges
         -shear  geometry       slide  one  edge of the image along the X or Y
       axis
         -sigmoidal-contrast geometry
                              lightness  rescaling  using  sigmoidal  contrast
       enhancement
         -sketch geometry     simulate a pencil sketch
         -solarize threshold  negate all pixels above the threshold level
         -splice geometry     splice the background color into the image
         -spread amount       displace image pixels by a random amount
         -strip               strip image of all profiles and comments
         -swirl degrees       swirl image pixels about the center
         -threshold value     threshold the image
         -thumbnail geometry  create a thumbnail of the image
         -tile filename       tile image when filling a graphic primitive
         -tint value          tint the image with the fill color
         -transform           affine transform image
         -transparent color   make this color transparent within the image
         -transpose           flip image vertically and rotate 90 degrees
         -transverse          flop image horizontally and rotate 270 degrees
         -trim                trim image edges
         -type type           image type
         -unique-colors       discard all but one of any pixel color
         -unsharp geometry    sharpen the image
         -vignette geometry   soften the edges of the image in vignette style
         -wave geometry       alter an image along a sine wave
         -white-threshold value
                              force all pixels above the threshold into white
 
       Image Sequence Operators:
         -affinity filename   transform image colors to match this set of col‐
       ors
         -append              append an image sequence
         -average             average an image sequence
         -clut                apply a color lookup table to the image
         -coalesce            merge a sequence of images
         -combine             combine a sequence of images
         -composite           composite image
         -crop geometry       cut out a rectangular region of the image
         -deconstruct         break down an image  sequence  into  constituent
       parts
         -flatten             flatten a sequence of images
         -fx  expression       apply mathematical expression to an image chan‐
       nel(s)
         -hald-clut           apply a Hald color lookup table to the image
         -morph value         morph an image sequence
         -mosaic              create a mosaic from an image sequence
         -process arguments   process the image with a custom image filter
         -separate            separate an image channel into a grayscale image
         -write filename      write images to this file
 
       Image Stack Operators:
         -clone index         clone an image
         -delete index        delete the image from the image sequence
         -insert index        insert last image into the image sequence
         -swap indexes        swap two images in the image sequence
 
       Miscellaneous Options:
         -debug events        display copious debugging information
         -help                print program options
         -log format          format of debugging information
         -list type           print a list of supported option arguments
         -version             print version information
 
       By default, the image format of `file' is determined by its magic  num‐
       ber.   To  specify a particular image format, precede the filename with
       an image format name and a colon (i.e. ps:image) or specify  the  image
       type as the filename suffix (i.e. image.ps).  Specify 'file' as '-' for
       standard input or output.

Vielleicht hilft diese Information ja nicht nur mir weiter.

Daten: Verfasst von Muckel, am 17. September 2010, um 11:00 Uhr.
Abgelegt unter: Ubuntu
Schlagworte: , , , , , , , , , , , , ,
Verwendung:  drucken  PDF-Dokument  email  Nachrichtenfeed  bearbeiten  dauerhafter LinkTrackback
Kommentare: Es wurde noch kein Kommentar geschrieben.
 :: 
Internetseite von Autor. Inhalte sind als Nachrichten-Feed verfügbar.
Valid XHTML 1.0 Transitional CSS ist valide! PHP Wordpress Notepad-Plus RSS-Feed Creative-Commons-Licens spenden kostenloser Counter