Skip to content

Commit

Permalink
Melhoria na definição de nomes de arquivos e processamento em geral
Browse files Browse the repository at this point in the history
  • Loading branch information
nidorx committed Nov 27, 2019
1 parent cff7c27 commit f38f5b9
Show file tree
Hide file tree
Showing 84 changed files with 648 additions and 1,128 deletions.
Empty file added 1024/.keep
Empty file.
Binary file removed 1024/2AD4D4_74838A_90E8E8_B2BFC5_041414_3B4C4D.png
Binary file not shown.
Binary file removed 1024/2AD4D4_79766E_90E8E8_197F7F_041414_394248.png
Binary file not shown.
Binary file removed 1024/3FBF3F_636768_9BDD9B_267226_040C04_3E464A.png
Binary file not shown.
Binary file removed 1024/4A94B4_7E8382_CCE1EA_ADC1C9_264D5D_434B4B.png
Binary file not shown.
Binary file removed 1024/5F9F9F_7A7F80_ABCDCD_B7D4D4_315353_264442.png
Binary file not shown.
Binary file removed 1024/67930C_629284_BEE981_F6F4EE_4C7B0C_244431.png
Binary file not shown.
Binary file removed 1024/798285_818B90_B9BEBF_B2B7B9_3F4345_3C4443.png
Binary file not shown.
Binary file removed 1024/7CA4C4_5F788E_BDDCEC_ADC7D6_143944_304D57.png
Binary file not shown.
Binary file removed 1024/7F7F7F_7C7C7C_BCBCBC_9C9C9C_424242_444444.png
Binary file not shown.
Binary file removed 1024/7F7F7F_7C7C7C_BCBCBC_9E9E9E_424242_3F3F3F.png
Binary file not shown.
Binary file removed 1024/7F7F7F_7C7C7C_BCBCBC_C1C1C1_424242_6A6A6A.png
Binary file not shown.
Binary file removed 1024/7F7F7F_8C8C8C_BCBCBC_C4C4C4_424242_474747.png
Binary file not shown.
Binary file removed 1024/80633D_9C825F_D4BCA4_CCBCA4_533E27_695030.png
Binary file not shown.
Binary file removed 1024/9C6444_A46C5C_ECACA4_BC7D66_5F3926_4C3424.png
Binary file not shown.
Binary file removed 1024/AF682D_79481F_E3B995_79481F_743913_834015.png
Binary file not shown.
Binary file removed 1024/B3904B_877E71_DCCCAC_AAC3D6_5D4B27_6C645B.png
Binary file not shown.
Binary file removed 1024/B57540_714927_DCB4A0_6F4029_6A2F10_843A14.png
Binary file not shown.
Binary file removed 1024/BA6944_857B6A_F4E7E1_CFC0B4_613623_5C5340.png
Binary file not shown.
Binary file removed 1024/BE7A39_754B23_F7C48F_8E4D0A_703614_813E17.png
Binary file not shown.
Binary file removed 1024/C65646_B36458_EC8D83_841F14_6A1B17_753B3C.png
Binary file not shown.
Binary file removed 1024/CCA494_937767_D4AC9D_D4B4A4_59382A_50413A.png
Binary file not shown.
Binary file removed 1024/CCA58C_9C8364_F6DAD0_D9BBA7_5B3C28_685233.png
Binary file not shown.
Binary file removed 1024/CCAC94_917866_FCDCE4_D4B3A2_593E2A_423831.png
Binary file not shown.
Binary file removed 1024/F4D404_968202_FCEC75_958403_D89A0C_906708.png
Binary file not shown.
Binary file removed 1024/FCE404_978801_FCEC7C_958303_BB8A07_936C05.png
Binary file not shown.
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,31 @@ https://blender.stackexchange.com/a/66139
https://gist.github.com/diramazioni/9255292

# Force 8-bit output
"magick" "Image.tif" -depth 8 -profile sRGB2014.icc "Image4.png"

"magick" identify -verbose "Image5.png"
// Add profile SRGB, convert colorspace to sRGB and remove all profiles
"magick" "image.tif" -profile sRGB2014.icc -colorspace RGB -strip "PNG24:image-6.png"

"magick" "image.tif" -depth 8 -profile sRGB2014.icc "Image4.png"

"magick" "image.tif" "image-1.png"
-- magick.exe: profile 'icc': 0h: PCS illuminant is not D50 `image-1.png' @ warning/png.c/MagickPNGWarningHandler/1748.

"magick" "image.tif" -depth 8 "image-2.png"

"magick" "image.tif" -depth 8 -profile sRGB2014.icc "image-3.png"

"magick" "image.tif" "PNG24:image-4.png"

"magick" "image.tif" -profile sRGB2014.icc "PNG24:image-5.png"

"magick" identify -verbose "image-5.png"


-set colorspace sRGB


magick rose: rose.tif
magick rose.tif -colorspace RGB -filter Box -resize 35x23 -colorspace sRGB rose1.tif
magick rose.tif -set colorspace sRGB -colorspace RGB roseRGB.tif
magick roseRGB.tif -filter Box -resize 35x23 roseSMALL.tif
magick roseSMALL.tif -set colorspace RGB -colorspace sRGB rose2.tif
Loading

0 comments on commit f38f5b9

Please sign in to comment.