日签 Or 日历,生成一张指定日期的图片,可作为日历。Just For Fun!👏
PHP实现版本 Python版本实现 Android桌面小部件
如果需要在项目中使用,在你的gemfile中添加以下代码
gem 'daily_image'
然后执行下面的命令
$ bundle
或者,你可以直接安装使用
$ gem install daily_image
当你需要项目使用时,可以通过下面方式修改默认配置:
# 初始项目配置
DailyImage.configure do |config|
config.bg_color = [255, 255, 255] # 背景颜色
config.frame_color = [151, 158, 160] # 边框颜色
config.text_color = [100, 145, 170] # 文字颜色
config.date_color = [100, 145, 170] # 中间日期颜色
config.unused_color = [200, 205, 215] # 进度条未使用颜色
config.used_color = [100, 145, 170] # 进度条已使用颜色
config.out_frame_offset = 15 # 外层边框偏移量
config.in_frame_offset = 50 # 下半部分内层边框偏移量
config.font = 'Hiragino Sans GB' # 文字默认字体
end
# 调用方法
DailyImage.draw_image(output_path = nil, date = Date.today) # 默认图片存放地址,包所在的目录; 默认生成为当日
# 例子
DailyImage.draw_image('./', '2018-09-30')
如果是直接安装,可以通过命令行直接调用。当然,还是需要安装ruby以及对应的依赖
$ bundle exec daily_image -h
Usage: daily_image [options]
Specific options:
-b, --bg_color BG_COLOR the image's background color
-r, --frame_color FRAME_COLOR the image's frame color
-t, --text_color TEXT_COLOR the image's text color
-c, --date_color DATE_COLOR the middle date's text color
-n, --unused_color UNUSED_COLOR unused color of the progress bar
-u, --used_color USED_COLOR used color of the progress bar
-o OUT_FRAME_OFFSET, the outside frame offset
--out_offset
-i, --in_offset IN_FRAME_OFFSET the inside frame offset
-f, --font FONT the text font
-s, --output OUTPUT the output path, save the new image
-d, --date Specific date the date you want to generate
Common options:
-h, --help Show the help message
-v, --version Show version
打包镜像
$ docker build . -t ruby-image
使用
$ docker run -it --mount src="$(pwd)",target=/home,type=bind ruby-image daily_image -s /home/
然后你就可以在当前目录看到新生成的图片文件了
站在巨人的肩膀上
-
画图使用了 ruby-vips
-
诗词来自于 一言·古诗词 API
- 使用机器学习生成古诗词,替代一言·古诗词API
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
欢迎贡献相关代码或是反馈使用时遇到的问题👏,另外请记得为你的代码编写测试。