Skip to content

Commit

Permalink
{% endhighlight %}
Browse files Browse the repository at this point in the history
  • Loading branch information
ricoThaka authored Sep 20, 2024
1 parent 1f640d7 commit b9f9daf
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions current.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@

# Currently Compiling


## imageMagick
Normani i was working on a solution to extract all the colors from an image [imagemagick](https://imagemagick.org/index.php) is the solution, but i need a [terminal](https://developers.redhat.com/cheat-sheets/bash-shell-cheat-sheet?sc_cid=7015Y000003siHyQAI&gad_source=1&gclid=Cj0KCQjwurS3BhCGARIsADdUH515STP5UbVbDm3N6MaJK5TBieY61nmerqhniiGaAt-MksT6STA8DY8aAsJuEALw_wcB&gclsrc=aw.ds)

>ImageMagick® is a free, open-source software suite, used for editing and manipulating digital images. It can be used to create, edit, compose, or convert bitmap images, and supports a wide range of file formats, including JPEG, PNG, GIF, TIFF, and Ultra HDR.

[ImageMagick Examples -- Image File Handling](https://www.imagemagick.org/Usage/files/#txt)
{% highlight bash %}
magick -list color | egrep '^b' | \
while read color junk; do \
magick -label $color -size 70x20 xc:$color +depth miff:-; \
done |\
magick montage - -frame 5 -tile 6x -geometry +2+2 \
-background none color_table.png
{% endhighlight %}

![Palatte](https://www.imagemagick.org/Usage/files/color_table.png)

# [- LandSlide On Mars]

![LANDSLiDE](https://static.uahirise.org/hipod/ESP_050033_1920.jpg)
Expand All @@ -26,8 +45,6 @@ NASA/JPL-Caltech/University of Arizona
#Mars #science #NASA
</cite>

<iframe width="912" height="729" src="https://www.youtube.com/embed/radHy4HhhNg" title="Landslide (2017 Remaster)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

![LandSlide](https://pbs.twimg.com/media/GXnx31absAA19w3?format=jpg&name=large)


Expand Down

0 comments on commit b9f9daf

Please sign in to comment.